1
0
mirror of https://github.com/rancher/types.git synced 2025-09-18 07:52:41 +00:00

Generated code

This commit is contained in:
Sebastiaan van Steenis
2019-07-18 12:34:07 +02:00
committed by Alena Prokharchyk
parent 76b4f078af
commit 7aea84d554

View File

@@ -6,6 +6,7 @@ const (
S3BackupConfigFieldBucketName = "bucketName"
S3BackupConfigFieldCustomCA = "customCa"
S3BackupConfigFieldEndpoint = "endpoint"
S3BackupConfigFieldFolder = "folder"
S3BackupConfigFieldRegion = "region"
S3BackupConfigFieldSecretKey = "secretKey"
)
@@ -15,6 +16,7 @@ type S3BackupConfig struct {
BucketName string `json:"bucketName,omitempty" yaml:"bucketName,omitempty"`
CustomCA string `json:"customCa,omitempty" yaml:"customCa,omitempty"`
Endpoint string `json:"endpoint,omitempty" yaml:"endpoint,omitempty"`
Folder string `json:"folder,omitempty" yaml:"folder,omitempty"`
Region string `json:"region,omitempty" yaml:"region,omitempty"`
SecretKey string `json:"secretKey,omitempty" yaml:"secretKey,omitempty"`
}