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

Update generated code for k8s 1.18

This commit is contained in:
Darren Shepherd
2020-03-26 13:23:17 -07:00
parent 0cb9d9a237
commit 438c299ece
34 changed files with 147 additions and 45 deletions

View File

@@ -9,7 +9,7 @@ const (
)
type KMSConfiguration struct {
CacheSize int64 `json:"cacheSize,omitempty" yaml:"cacheSize,omitempty"`
CacheSize *int64 `json:"cacheSize,omitempty" yaml:"cacheSize,omitempty"`
Endpoint string `json:"endpoint,omitempty" yaml:"endpoint,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
Timeout string `json:"timeout,omitempty" yaml:"timeout,omitempty"`

View File

@@ -10,6 +10,7 @@ const (
ManagementSecretFieldCreated = "created"
ManagementSecretFieldCreatorID = "creatorId"
ManagementSecretFieldData = "data"
ManagementSecretFieldImmutable = "immutable"
ManagementSecretFieldLabels = "labels"
ManagementSecretFieldName = "name"
ManagementSecretFieldOwnerReferences = "ownerReferences"
@@ -25,6 +26,7 @@ type ManagementSecret struct {
Created string `json:"created,omitempty" yaml:"created,omitempty"`
CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"`
Data map[string]string `json:"data,omitempty" yaml:"data,omitempty"`
Immutable *bool `json:"immutable,omitempty" yaml:"immutable,omitempty"`
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`