diff --git a/client/management/v3/zz_generated_setting.go b/client/management/v3/zz_generated_setting.go index aa115704..ece8705e 100644 --- a/client/management/v3/zz_generated_setting.go +++ b/client/management/v3/zz_generated_setting.go @@ -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"` diff --git a/client/project/v3/zz_generated_deployment_parallel_config.go b/client/project/v3/zz_generated_deployment_parallel_config.go index af111446..2150b97c 100644 --- a/client/project/v3/zz_generated_deployment_parallel_config.go +++ b/client/project/v3/zz_generated_deployment_parallel_config.go @@ -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"` }