You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clouddeploy: allowed sending `start_time` with default values in `weekly_windows` in `google_clouddeploy_deploy_policy` resource. `start_time 00:00` means the policy will start at midnight.
Description: `Required. Rules to apply. At least one rule must be present.`,
77
+
Description: `Rules to apply. At least one rule must be present.`,
78
78
Elem: &schema.Resource{
79
79
Schema: map[string]*schema.Schema{
80
80
"rollout_restriction": {
81
81
Type: schema.TypeList,
82
82
Optional: true,
83
-
Description: `Optional. Rollout restrictions.`,
83
+
Description: `Rollout restrictions.`,
84
84
MaxItems: 1,
85
85
Elem: &schema.Resource{
86
86
Schema: map[string]*schema.Schema{
87
87
"id": {
88
88
Type: schema.TypeString,
89
89
Required: true,
90
-
Description: `Required. ID of the rule. This id must be unique in the 'DeployPolicy' resource to which this rule belongs. The format is 'a-z{0,62}'.`,
90
+
Description: `ID of the rule. This id must be unique in the 'DeployPolicy' resource to which this rule belongs. The format is 'a-z{0,62}'.`,
91
91
},
92
92
"actions": {
93
93
Type: schema.TypeList,
94
94
Optional: true,
95
-
Description: `Optional. Rollout actions to be restricted as part of the policy. If left empty, all actions will be restricted. Possible values: ["ADVANCE", "APPROVE", "CANCEL", "CREATE", "IGNORE_JOB", "RETRY_JOB", "ROLLBACK", "TERMINATE_JOBRUN"]`,
95
+
Description: `Rollout actions to be restricted as part of the policy. If left empty, all actions will be restricted. Possible values: ["ADVANCE", "APPROVE", "CANCEL", "CREATE", "IGNORE_JOB", "RETRY_JOB", "ROLLBACK", "TERMINATE_JOBRUN"]`,
Description: `Optional. Recurring weekly windows within which actions are restricted.`,
244
+
Description: `Recurring weekly windows within which actions are restricted.`,
245
245
Elem: &schema.Resource{
246
246
Schema: map[string]*schema.Schema{
247
247
"days_of_week": {
248
248
Type: schema.TypeList,
249
249
Optional: true,
250
-
Description: `Optional. Days of week. If left empty, all days of the week will be included. Possible values: ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"]`,
250
+
Description: `Days of week. If left empty, all days of the week will be included. Possible values: ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"]`,
Description: `Optional. End time (exclusive). Use 24:00 to indicate midnight. If you specify endTime you must also specify startTime. If left empty, this will block for the entire day for the days specified in daysOfWeek.`,
259
+
Description: `End time (exclusive). Use 24:00 to indicate midnight. If you specify endTime you must also specify startTime. If left empty, this will block for the entire day for the days specified in daysOfWeek.`,
Description: `Optional. Start time (inclusive). Use 00:00 for the beginning of the day. If you specify startTime you must also specify endTime. If left empty, this will block for the entire day for the days specified in daysOfWeek.`,
289
+
Description: `Start time (inclusive). Use 00:00 for the beginning of the day. If you specify startTime you must also specify endTime. If left empty, this will block for the entire day for the days specified in daysOfWeek.`,
Description: `Required. Selected resources to which the policy will be applied. At least one selector is required. If one selector matches the resource the policy applies. For example, if there are two selectors and the action being attempted matches one of them, the policy will apply to that action.`,
331
+
Description: `Selected resources to which the policy will be applied. At least one selector is required. If one selector matches the resource the policy applies. For example, if there are two selectors and the action being attempted matches one of them, the policy will apply to that action.`,
Description: `Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details.
386
+
Description: `User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details.
387
387
388
388
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
389
389
Please refer to the field 'effective_annotations' for all of the annotations present on the resource.`,
@@ -392,12 +392,12 @@ Please refer to the field 'effective_annotations' for all of the annotations pre
392
392
"description": {
393
393
Type: schema.TypeString,
394
394
Optional: true,
395
-
Description: `Optional. Description of the 'DeployPolicy'. Max length is 255 characters.`,
395
+
Description: `Description of the 'DeployPolicy'. Max length is 255 characters.`,
396
396
},
397
397
"labels": {
398
398
Type: schema.TypeMap,
399
399
Optional: true,
400
-
Description: `Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters.
400
+
Description: `Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters.
401
401
402
402
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
403
403
Please refer to the field 'effective_labels' for all of the labels present on the resource.`,
@@ -406,7 +406,7 @@ Please refer to the field 'effective_labels' for all of the labels present on th
406
406
"suspended": {
407
407
Type: schema.TypeBool,
408
408
Optional: true,
409
-
Description: `Optional. When suspended, the policy will not prevent actions from occurring, even if the action violates the policy.`,
409
+
Description: `When suspended, the policy will not prevent actions from occurring, even if the action violates the policy.`,
410
410
},
411
411
"create_time": {
412
412
Type: schema.TypeString,
@@ -428,7 +428,7 @@ Please refer to the field 'effective_labels' for all of the labels present on th
428
428
"etag": {
429
429
Type: schema.TypeString,
430
430
Computed: true,
431
-
Description: `Optional. The weak etag of the 'DeployPolicy' resource. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.`,
431
+
Description: `The weak etag of the 'DeployPolicy' resource. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.`,
0 commit comments