1
0
mirror of https://github.com/rancher/types.git synced 2025-06-26 21:51:33 +00:00

Update generated code

This commit is contained in:
Darren Shepherd 2018-01-23 11:51:45 -07:00
parent d3c5407fba
commit d45d3364fd
2 changed files with 6 additions and 6 deletions

View File

@ -9,11 +9,11 @@ const (
SettingFieldAnnotations = "annotations"
SettingFieldCreated = "created"
SettingFieldCreatorID = "creatorId"
SettingFieldHideValue = "hideValue"
SettingFieldCustomized = "customized"
SettingFieldDefault = "default"
SettingFieldLabels = "labels"
SettingFieldName = "name"
SettingFieldOwnerReferences = "ownerReferences"
SettingFieldReadOnly = "readOnly"
SettingFieldRemoved = "removed"
SettingFieldUuid = "uuid"
SettingFieldValue = "value"
@ -24,11 +24,11 @@ type Setting struct {
Annotations map[string]string `json:"annotations,omitempty"`
Created string `json:"created,omitempty"`
CreatorID string `json:"creatorId,omitempty"`
HideValue *bool `json:"hideValue,omitempty"`
Customized *bool `json:"customized,omitempty"`
Default string `json:"default,omitempty"`
Labels map[string]string `json:"labels,omitempty"`
Name string `json:"name,omitempty"`
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty"`
ReadOnly *bool `json:"readOnly,omitempty"`
Removed string `json:"removed,omitempty"`
Uuid string `json:"uuid,omitempty"`
Value string `json:"value,omitempty"`

View File

@ -3,12 +3,12 @@ package client
const (
DeploymentParallelConfigType = "deploymentParallelConfig"
DeploymentParallelConfigFieldMinReadySeconds = "minReadySeconds"
DeploymentParallelConfigFieldProgressDeadlineSeconds = "processDeadlineSeconds"
DeploymentParallelConfigFieldProgressDeadlineSeconds = "progressDeadlineSeconds"
DeploymentParallelConfigFieldStartFirst = "startFirst"
)
type DeploymentParallelConfig struct {
MinReadySeconds *int64 `json:"minReadySeconds,omitempty"`
ProgressDeadlineSeconds *int64 `json:"processDeadlineSeconds,omitempty"`
ProgressDeadlineSeconds *int64 `json:"progressDeadlineSeconds,omitempty"`
StartFirst *bool `json:"startFirst,omitempty"`
}