Merge pull request #6249 from TamerTas/typo

Fix typo in Secrets
pull/6/head
Victor Marmol 2015-03-31 15:14:55 -07:00
commit a78a009877
5 changed files with 5 additions and 5 deletions

View File

@ -277,7 +277,7 @@ type Secret struct {
// representing the arbitrary (possibly non-string) data value here. // representing the arbitrary (possibly non-string) data value here.
Data map[string][]byte `json:"data,omitempty"` Data map[string][]byte `json:"data,omitempty"`
// Used to facilitate programatic handling of secret data. // Used to facilitate programmatic handling of secret data.
Type SecretType `json:"type,omitempty"` Type SecretType `json:"type,omitempty"`
} }

View File

@ -1643,7 +1643,7 @@ type Secret struct {
// representing the arbitrary (possibly non-string) data value here. // representing the arbitrary (possibly non-string) data value here.
Data map[string][]byte `json:"data,omitempty"` Data map[string][]byte `json:"data,omitempty"`
// Used to facilitate programatic handling of secret data. // Used to facilitate programmatic handling of secret data.
Type SecretType `json:"type,omitempty"` Type SecretType `json:"type,omitempty"`
} }

View File

@ -1451,7 +1451,7 @@ type Secret struct {
// representing the arbitrary (possibly non-string) data value here. // representing the arbitrary (possibly non-string) data value here.
Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"` Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"`
// Used to facilitate programatic handling of secret data. // Used to facilitate programmatic handling of secret data.
Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"` Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"`
} }

View File

@ -1514,7 +1514,7 @@ type Secret struct {
// representing the arbitrary (possibly non-string) data value here. // representing the arbitrary (possibly non-string) data value here.
Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"` Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"`
// Used to facilitate programatic handling of secret data. // Used to facilitate programmatic handling of secret data.
Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"` Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"`
} }

View File

@ -1548,7 +1548,7 @@ type Secret struct {
// representing the arbitrary (possibly non-string) data value here. // representing the arbitrary (possibly non-string) data value here.
Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"` Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"`
// Used to facilitate programatic handling of secret data. // Used to facilitate programmatic handling of secret data.
Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"` Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"`
} }