Skip to content

Commit 5f2f220

Browse files
feat(all): auto-regenerate discovery clients (#3186)
1 parent ea78c84 commit 5f2f220

22 files changed

+538
-245
lines changed

apihub/v1/apihub-api.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2780,7 +2780,7 @@
27802780
}
27812781
}
27822782
},
2783-
"revision": "20250526",
2783+
"revision": "20250528",
27842784
"rootUrl": "https://apihub.googleapis.com/",
27852785
"schemas": {
27862786
"Empty": {
@@ -2861,19 +2861,19 @@
28612861
"properties": {
28622862
"apiFunctionalRequirements": {
28632863
"$ref": "GoogleCloudApihubV1AttributeValues",
2864-
"description": "Optional. The api functional requirements associated with the API resource. Carinality is 1 for this attribute."
2864+
"description": "Optional. The api functional requirements associated with the API resource. Carinality is 1 for this attribute. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-api-functional-requirements` attribute. The value of the attribute should be a proper URI, and in case of Cloud Storage URI, it should point to a Cloud Storage object, not a directory."
28652865
},
28662866
"apiRequirements": {
28672867
"$ref": "GoogleCloudApihubV1AttributeValues",
2868-
"description": "Optional. The api requirement doc associated with the API resource. Carinality is 1 for this attribute."
2868+
"description": "Optional. The api requirement doc associated with the API resource. Carinality is 1 for this attribute. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-api-requirements` attribute. The value of the attribute should be a proper URI, and in case of Cloud Storage URI, it should point to a Cloud Storage object, not a directory."
28692869
},
28702870
"apiStyle": {
28712871
"$ref": "GoogleCloudApihubV1AttributeValues",
28722872
"description": "Optional. The style of the API. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-api-style` attribute. The number of values for this attribute will be based on the cardinality of the attribute. The same can be retrieved via GetAttribute API. All values should be from the list of allowed values defined for the attribute."
28732873
},
28742874
"apiTechnicalRequirements": {
28752875
"$ref": "GoogleCloudApihubV1AttributeValues",
2876-
"description": "Optional. The api technical requirements associated with the API resource. Carinality is 1 for this attribute."
2876+
"description": "Optional. The api technical requirements associated with the API resource. Carinality is 1 for this attribute. This maps to the following system defined attribute: `projects/{project}/locations/{location}/attributes/system-api-technical-requirements` attribute. The value of the attribute should be a proper URI, and in case of Cloud Storage URI, it should point to a Cloud Storage object, not a directory."
28772877
},
28782878
"attributes": {
28792879
"additionalProperties": {

apihub/v1/apihub-gen.go

Lines changed: 18 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cloudscheduler/v1/cloudscheduler-api.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@
535535
}
536536
}
537537
},
538-
"revision": "20250411",
538+
"revision": "20250530",
539539
"rootUrl": "https://cloudscheduler.googleapis.com/",
540540
"schemas": {
541541
"AppEngineHttpTarget": {
@@ -718,6 +718,11 @@
718718
"$ref": "RetryConfig",
719719
"description": "Settings that determine the retry behavior."
720720
},
721+
"satisfiesPzs": {
722+
"description": "Output only. Whether or not this Job satisfies the requirements of physical zone separation",
723+
"readOnly": true,
724+
"type": "boolean"
725+
},
721726
"schedule": {
722727
"description": "Required, except when used with UpdateJob. Describes the schedule on which the job will be executed. The schedule can be either of the following types: * [Crontab](https://en.wikipedia.org/wiki/Cron#Overview) * English-like [schedule](https://cloud.google.com/scheduler/docs/configuring/cron-job-schedules) As a general rule, execution `n + 1` of a job will not begin until execution `n` has finished. Cloud Scheduler will never allow two simultaneously outstanding executions. For example, this implies that if the `n+1`th execution is scheduled to run at 16:00 but the `n`th execution takes until 16:15, the `n+1`th execution will not start until `16:15`. A scheduled start time will be delayed if the previous execution has not ended when its scheduled time occurs. If retry_count \u003e 0 and a job attempt fails, the job will be tried a total of retry_count times, with exponential backoff, until the next scheduled start time. If retry_count is 0, a job attempt will not be retried if it fails. Instead the Cloud Scheduler system will wait for the next scheduled execution time. Setting retry_count to 0 does not prevent failed jobs from running according to schedule after the failure.",
723728
"type": "string"
@@ -1030,7 +1035,7 @@
10301035
"type": "object"
10311036
},
10321037
"RetryConfig": {
1033-
"description": "Settings that determine the retry behavior. By default, if a job does not complete successfully (meaning that an acknowledgement is not received from the handler, then it will be retried with exponential backoff according to the settings in RetryConfig.",
1038+
"description": "Settings that determine the retry behavior. For more information, see [Retry jobs](https://cloud.google.com/scheduler/docs/configuring/retry-jobs). By default, if a job does not complete successfully (meaning that an acknowledgement is not received from the handler, then it will be retried with exponential backoff according to the settings in RetryConfig.",
10341039
"id": "RetryConfig",
10351040
"properties": {
10361041
"maxBackoffDuration": {
@@ -1039,12 +1044,12 @@
10391044
"type": "string"
10401045
},
10411046
"maxDoublings": {
1042-
"description": "The time between retries will double `max_doublings` times. A job's retry interval starts at min_backoff_duration, then doubles `max_doublings` times, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For example, if min_backoff_duration is 10s, max_backoff_duration is 300s, and `max_doublings` is 3, then the job will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.",
1047+
"description": "The time between retries will double `max_doublings` times. A job's retry interval starts at min_backoff_duration, then doubles `max_doublings` times, then increases linearly, and finally retries at intervals of max_backoff_duration up to retry_count times. For examples, see [Retry jobs](https://cloud.google.com/scheduler/docs/configuring/retry-jobs#max-doublings). The default value of this field is 5.",
10431048
"format": "int32",
10441049
"type": "integer"
10451050
},
10461051
"maxRetryDuration": {
1047-
"description": "The time limit for retrying a failed job, measured from time when an execution was first attempted. If specified with retry_count, the job will be retried until both limits are reached. The default value for max_retry_duration is zero, which means retry duration is unlimited.",
1052+
"description": "The time limit for retrying a failed job, measured from the time when an execution was first attempted. If specified with retry_count, the job will be retried until both limits are reached. The default value for max_retry_duration is zero, which means retry duration is unlimited. However, if retry_count is also 0, a job attempt won't be retried if it fails.",
10481053
"format": "google-duration",
10491054
"type": "string"
10501055
},
@@ -1054,7 +1059,7 @@
10541059
"type": "string"
10551060
},
10561061
"retryCount": {
1057-
"description": "The number of attempts that the system will make to run a job using the exponential backoff procedure described by max_doublings. The default value of retry_count is zero. If retry_count is 0, a job attempt will not be retried if it fails. Instead the Cloud Scheduler system will wait for the next scheduled execution time. Setting retry_count to 0 does not prevent failed jobs from running according to schedule after the failure. If retry_count is set to a non-zero number then Cloud Scheduler will retry failed attempts, using exponential backoff, retry_count times, or until the next scheduled execution time, whichever comes first. Values greater than 5 and negative values are not allowed.",
1062+
"description": "The number of attempts that the system will make to run a job using the exponential backoff procedure described by max_doublings. The default value of retry_count is zero. If retry_count is 0 (and if max_retry_duration is also 0), a job attempt won't be retried if it fails. Instead, Cloud Scheduler system will wait for the next scheduled execution time. Setting retry_count to 0 doesn't prevent failed jobs from running according to schedule after the failure. If retry_count is set to a non-zero number, Cloud Scheduler will retry the failed job, using exponential backoff, for retry_count times until the job succeeds or the number of retries is exhausted. Note that the next scheduled execution time might be skipped if the retries continue through that time. Values greater than 5 and negative values are not allowed.",
10581063
"format": "int32",
10591064
"type": "integer"
10601065
}

cloudscheduler/v1/cloudscheduler-gen.go

Lines changed: 28 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)