1
0
mirror of https://github.com/rancher/types.git synced 2025-08-01 21:07:41 +00:00

generated code

This commit is contained in:
moelsayed 2019-06-20 22:12:39 +02:00 committed by Alena Prokharchyk
parent b5c59bf137
commit 98cd9d5e53

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"`
}