1
0
mirror of https://github.com/rancher/types.git synced 2025-09-25 20:31:25 +00:00

generated code

This commit is contained in:
moelsayed
2019-06-25 18:53:15 +02:00
committed by Alena Prokharchyk
parent 8953c44f96
commit e7d0dbd108

View File

@@ -5,6 +5,7 @@ const (
S3BackupConfigFieldAccessKey = "accessKey"
S3BackupConfigFieldBucketName = "bucketName"
S3BackupConfigFieldEndpoint = "endpoint"
S3BackupConfigFieldEndpointCA = "endpointCa"
S3BackupConfigFieldRegion = "region"
S3BackupConfigFieldSecretKey = "secretKey"
)
@@ -13,6 +14,7 @@ type S3BackupConfig struct {
AccessKey string `json:"accessKey,omitempty" yaml:"accessKey,omitempty"`
BucketName string `json:"bucketName,omitempty" yaml:"bucketName,omitempty"`
Endpoint string `json:"endpoint,omitempty" yaml:"endpoint,omitempty"`
EndpointCA string `json:"endpointCa,omitempty" yaml:"endpointCa,omitempty"`
Region string `json:"region,omitempty" yaml:"region,omitempty"`
SecretKey string `json:"secretKey,omitempty" yaml:"secretKey,omitempty"`
}