Skip to content

Commit f812ea5

Browse files
feat(all): auto-regenerate discovery clients (#2991)
1 parent 5baa849 commit f812ea5

File tree

16 files changed

+2906
-99
lines changed

16 files changed

+2906
-99
lines changed

aiplatform/v1/aiplatform-api.json

Lines changed: 451 additions & 5 deletions
Large diffs are not rendered by default.

aiplatform/v1/aiplatform-gen.go

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

aiplatform/v1beta1/aiplatform-api.json

Lines changed: 386 additions & 6 deletions
Large diffs are not rendered by default.

aiplatform/v1beta1/aiplatform-gen.go

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

cloudbuild/v2/cloudbuild-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@
653653
"type": "string"
654654
},
655655
"webhookKey": {
656-
"description": "Arbitrary additional key to find the maching repository for a webhook event if needed.",
656+
"description": "Arbitrary additional key to find the matching repository for a webhook event if needed.",
657657
"location": "query",
658658
"type": "string"
659659
}
@@ -1061,7 +1061,7 @@
10611061
}
10621062
}
10631063
},
1064-
"revision": "20250114",
1064+
"revision": "20250129",
10651065
"rootUrl": "https://cloudbuild.googleapis.com/",
10661066
"schemas": {
10671067
"AuditConfig": {

cloudbuild/v2/cloudbuild-gen.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

container/v1beta1/container-api.json

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2685,7 +2685,7 @@
26852685
}
26862686
}
26872687
},
2688-
"revision": "20241228",
2688+
"revision": "20250114",
26892689
"rootUrl": "https://container.googleapis.com/",
26902690
"schemas": {
26912691
"AcceleratorConfig": {
@@ -5462,7 +5462,7 @@
54625462
"additionalProperties": {
54635463
"type": "string"
54645464
},
5465-
"description": "The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The following parameters are supported. net.core.busy_poll net.core.busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse kernel.shmmni kernel.shmmax kernel.shmall",
5465+
"description": "The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The following parameters are supported. net.core.busy_poll net.core.busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.rmem_default net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse net.netfilter.nf_conntrack_max net.netfilter.nf_conntrack_buckets net.netfilter.nf_conntrack_tcp_timeout_close_wait net.netfilter.nf_conntrack_tcp_timeout_time_wait net.netfilter.nf_conntrack_tcp_timeout_established net.netfilter.nf_conntrack_acct kernel.shmmni kernel.shmmax kernel.shmall vm.max_map_count",
54665466
"type": "object"
54675467
}
54685468
},
@@ -6429,6 +6429,22 @@
64296429
"description": "Node kubelet configs.",
64306430
"id": "NodeKubeletConfig",
64316431
"properties": {
6432+
"allowedUnsafeSysctls": {
6433+
"description": "Optional. Defines a comma-separated allowlist of unsafe sysctls or sysctl patterns (ending in `*`). The unsafe namespaced sysctl groups are `kernel.shm*`, `kernel.msg*`, `kernel.sem`, `fs.mqueue.*`, and `net.*`. Leaving this allowlist empty means they cannot be set on Pods. To allow certain sysctls or sysctl patterns to be set on Pods, list them separated by commas. For example: `kernel.msg*,net.ipv4.route.min_pmtu`. See https://kubernetes.io/docs/tasks/administer-cluster/sysctl-cluster/ for more details.",
6434+
"items": {
6435+
"type": "string"
6436+
},
6437+
"type": "array"
6438+
},
6439+
"containerLogMaxFiles": {
6440+
"description": "Optional. Defines the maximum number of container log files that can be present for a container. See https://kubernetes.io/docs/concepts/cluster-administration/logging/#log-rotation The value must be an integer between 2 and 10, inclusive. The default value is 5 if unspecified.",
6441+
"format": "int32",
6442+
"type": "integer"
6443+
},
6444+
"containerLogMaxSize": {
6445+
"description": "Optional. Defines the maximum size of the container log file before it is rotated. See https://kubernetes.io/docs/concepts/cluster-administration/logging/#log-rotation Valid format is positive number + unit, e.g. 100Ki, 10Mi. Valid units are Ki, Mi, Gi. The value must be between 10Mi and 500Mi, inclusive. Note that the total container log size (container_log_max_size * container_log_max_files) cannot exceed 1% of the total storage of the node, to avoid disk pressure caused by log files. The default value is 10Mi if unspecified.",
6446+
"type": "string"
6447+
},
64326448
"cpuCfsQuota": {
64336449
"description": "Enable CPU CFS quota enforcement for containers that specify CPU limits. This option is enabled by default which makes kubelet use CFS quota (https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt) to enforce container CPU limits. Otherwise, CPU limits will not be enforced at all. Disable this option to mitigate CPU throttling problems while still having your pods to be in Guaranteed QoS class by specifying the CPU limits. The default value is 'true' if unspecified.",
64346450
"type": "boolean"
@@ -6441,6 +6457,24 @@
64416457
"description": "Control the CPU management policy on the node. See https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/ The following values are allowed. * \"none\": the default, which represents the existing scheduling behavior. * \"static\": allows pods with certain resource characteristics to be granted increased CPU affinity and exclusivity on the node. The default value is 'none' if unspecified.",
64426458
"type": "string"
64436459
},
6460+
"imageGcHighThresholdPercent": {
6461+
"description": "Optional. Defines the percent of disk usage after which image garbage collection is always run. The percent is calculated as this field value out of 100. The value must be between 10 and 85, inclusive and greater than image_gc_low_threshold_percent. The default value is 85 if unspecified.",
6462+
"format": "int32",
6463+
"type": "integer"
6464+
},
6465+
"imageGcLowThresholdPercent": {
6466+
"description": "Optional. Defines the percent of disk usage before which image garbage collection is never run. Lowest disk usage to garbage collect to. The percent is calculated as this field value out of 100. The value must be between 10 and 85, inclusive and smaller than image_gc_high_threshold_percent. The default value is 80 if unspecified.",
6467+
"format": "int32",
6468+
"type": "integer"
6469+
},
6470+
"imageMaximumGcAge": {
6471+
"description": "Optional. Defines the maximum age an image can be unused before it is garbage collected. The string must be a sequence of decimal numbers, each with optional fraction and a unit suffix, such as \"300s\", \"1.5h\", and \"2h45m\". Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\". The value must be a positive duration greater than image_minimum_gc_age or \"0s\". The default value is \"0s\" if unspecified, which disables this field, meaning images won't be garbage collected based on being unused for too long.",
6472+
"type": "string"
6473+
},
6474+
"imageMinimumGcAge": {
6475+
"description": "Optional. Defines the minimum age for an unused image before it is garbage collected. The string must be a sequence of decimal numbers, each with optional fraction and a unit suffix, such as \"300s\", \"1.5h\", and \"2h45m\". Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\". The value must be a positive duration less than or equal to 2 minutes. The default value is \"2m0s\" if unspecified.",
6476+
"type": "string"
6477+
},
64446478
"insecureKubeletReadonlyPortEnabled": {
64456479
"description": "Enable or disable Kubelet read only port.",
64466480
"type": "boolean"

container/v1beta1/container-gen.go

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

displayvideo/v3/displayvideo-api.json

Lines changed: 118 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8613,6 +8613,40 @@
86138613
}
86148614
}
86158615
},
8616+
"sdfuploadtasks": {
8617+
"resources": {
8618+
"operations": {
8619+
"methods": {
8620+
"get": {
8621+
"description": "Gets the latest state of an asynchronous SDF download task operation. Clients should poll this method at intervals of 30 seconds.",
8622+
"flatPath": "v3/sdfuploadtasks/operations/{operationsId}",
8623+
"httpMethod": "GET",
8624+
"id": "displayvideo.sdfuploadtasks.operations.get",
8625+
"parameterOrder": [
8626+
"name"
8627+
],
8628+
"parameters": {
8629+
"name": {
8630+
"description": "The name of the operation resource.",
8631+
"location": "path",
8632+
"pattern": "^sdfuploadtasks/operations/[^/]+$",
8633+
"required": true,
8634+
"type": "string"
8635+
}
8636+
},
8637+
"path": "v3/{+name}",
8638+
"response": {
8639+
"$ref": "Operation"
8640+
},
8641+
"scopes": [
8642+
"https://www.googleapis.com/auth/display-video",
8643+
"https://www.googleapis.com/auth/doubleclickbidmanager"
8644+
]
8645+
}
8646+
}
8647+
}
8648+
}
8649+
},
86168650
"targetingTypes": {
86178651
"resources": {
86188652
"targetingOptions": {
@@ -9222,7 +9256,7 @@
92229256
}
92239257
}
92249258
},
9225-
"revision": "20250124",
9259+
"revision": "20250129",
92269260
"rootUrl": "https://displayvideo.googleapis.com/",
92279261
"schemas": {
92289262
"ActiveViewVideoViewabilityMetricConfig": {
@@ -21115,6 +21149,89 @@
2111521149
},
2111621150
"type": "object"
2111721151
},
21152+
"SdfUploadTask": {
21153+
"description": "Type for the response returned by [SdfUploadTaskService.CreateSdfUploadTask].",
21154+
"id": "SdfUploadTask",
21155+
"properties": {
21156+
"resourceName": {
21157+
"description": "A resource name to be used in media.download to Download the script files. Or media.upload to Upload the script files. Resource names have the format `download/sdfuploadtasks/media/{media_id}`.",
21158+
"type": "string"
21159+
}
21160+
},
21161+
"type": "object"
21162+
},
21163+
"SdfUploadTaskMetadata": {
21164+
"description": "Type for the metadata returned by [SdfUploadTaskService.CreateSdfUploadTask].",
21165+
"id": "SdfUploadTaskMetadata",
21166+
"properties": {
21167+
"createTime": {
21168+
"description": "The time when the operation was created.",
21169+
"format": "google-datetime",
21170+
"type": "string"
21171+
},
21172+
"endTime": {
21173+
"description": "The time when execution was completed.",
21174+
"format": "google-datetime",
21175+
"type": "string"
21176+
},
21177+
"version": {
21178+
"description": "The SDF version used to execute this upload task.",
21179+
"enum": [
21180+
"SDF_VERSION_UNSPECIFIED",
21181+
"SDF_VERSION_3_1",
21182+
"SDF_VERSION_4",
21183+
"SDF_VERSION_4_1",
21184+
"SDF_VERSION_4_2",
21185+
"SDF_VERSION_5",
21186+
"SDF_VERSION_5_1",
21187+
"SDF_VERSION_5_2",
21188+
"SDF_VERSION_5_3",
21189+
"SDF_VERSION_5_4",
21190+
"SDF_VERSION_5_5",
21191+
"SDF_VERSION_6",
21192+
"SDF_VERSION_7",
21193+
"SDF_VERSION_7_1",
21194+
"SDF_VERSION_8"
21195+
],
21196+
"enumDeprecated": [
21197+
false,
21198+
true,
21199+
true,
21200+
true,
21201+
true,
21202+
true,
21203+
true,
21204+
true,
21205+
true,
21206+
true,
21207+
true,
21208+
false,
21209+
false,
21210+
false,
21211+
false
21212+
],
21213+
"enumDescriptions": [
21214+
"SDF version value is not specified or is unknown in this version.",
21215+
"SDF version 3.1",
21216+
"SDF version 4",
21217+
"SDF version 4.1",
21218+
"SDF version 4.2",
21219+
"SDF version 5.",
21220+
"SDF version 5.1",
21221+
"SDF version 5.2",
21222+
"SDF version 5.3",
21223+
"SDF version 5.4",
21224+
"SDF version 5.5",
21225+
"SDF version 6",
21226+
"SDF version 7. Read the [v7 migration guide](/display-video/api/structured-data-file/v7-migration-guide) before migrating to this version.",
21227+
"SDF version 7.1. Read the [v7 migration guide](/display-video/api/structured-data-file/v7-migration-guide) before migrating to this version.",
21228+
"SDF version 8. Read the [v8 migration guide](/display-video/api/structured-data-file/v8-migration-guide) before migrating to this version."
21229+
],
21230+
"type": "string"
21231+
}
21232+
},
21233+
"type": "object"
21234+
},
2111821235
"SearchTargetingOptionsRequest": {
2111921236
"description": "Request message for SearchTargetingOptions.",
2112021237
"id": "SearchTargetingOptionsRequest",

0 commit comments

Comments
 (0)