Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2991)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Feb 2, 2025
1 parent 5baa849 commit f812ea5
Show file tree
Hide file tree
Showing 16 changed files with 2,906 additions and 99 deletions.
456 changes: 451 additions & 5 deletions aiplatform/v1/aiplatform-api.json

Large diffs are not rendered by default.

838 changes: 814 additions & 24 deletions aiplatform/v1/aiplatform-gen.go

Large diffs are not rendered by default.

392 changes: 386 additions & 6 deletions aiplatform/v1beta1/aiplatform-api.json

Large diffs are not rendered by default.

753 changes: 735 additions & 18 deletions aiplatform/v1beta1/aiplatform-gen.go

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions cloudbuild/v2/cloudbuild-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@
"type": "string"
},
"webhookKey": {
"description": "Arbitrary additional key to find the maching repository for a webhook event if needed.",
"description": "Arbitrary additional key to find the matching repository for a webhook event if needed.",
"location": "query",
"type": "string"
}
Expand Down Expand Up @@ -1061,7 +1061,7 @@
}
}
},
"revision": "20250114",
"revision": "20250129",
"rootUrl": "https://cloudbuild.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down
2 changes: 1 addition & 1 deletion cloudbuild/v2/cloudbuild-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 36 additions & 2 deletions container/v1beta1/container-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2685,7 +2685,7 @@
}
}
},
"revision": "20241228",
"revision": "20250114",
"rootUrl": "https://container.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down Expand Up @@ -5462,7 +5462,7 @@
"additionalProperties": {
"type": "string"
},
"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",
"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",
"type": "object"
}
},
Expand Down Expand Up @@ -6429,6 +6429,22 @@
"description": "Node kubelet configs.",
"id": "NodeKubeletConfig",
"properties": {
"allowedUnsafeSysctls": {
"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.",
"items": {
"type": "string"
},
"type": "array"
},
"containerLogMaxFiles": {
"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.",
"format": "int32",
"type": "integer"
},
"containerLogMaxSize": {
"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.",
"type": "string"
},
"cpuCfsQuota": {
"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.",
"type": "boolean"
Expand All @@ -6441,6 +6457,24 @@
"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.",
"type": "string"
},
"imageGcHighThresholdPercent": {
"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.",
"format": "int32",
"type": "integer"
},
"imageGcLowThresholdPercent": {
"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.",
"format": "int32",
"type": "integer"
},
"imageMaximumGcAge": {
"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.",
"type": "string"
},
"imageMinimumGcAge": {
"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.",
"type": "string"
},
"insecureKubeletReadonlyPortEnabled": {
"description": "Enable or disable Kubelet read only port.",
"type": "boolean"
Expand Down
73 changes: 66 additions & 7 deletions container/v1beta1/container-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

119 changes: 118 additions & 1 deletion displayvideo/v3/displayvideo-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -8613,6 +8613,40 @@
}
}
},
"sdfuploadtasks": {
"resources": {
"operations": {
"methods": {
"get": {
"description": "Gets the latest state of an asynchronous SDF download task operation. Clients should poll this method at intervals of 30 seconds.",
"flatPath": "v3/sdfuploadtasks/operations/{operationsId}",
"httpMethod": "GET",
"id": "displayvideo.sdfuploadtasks.operations.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "The name of the operation resource.",
"location": "path",
"pattern": "^sdfuploadtasks/operations/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v3/{+name}",
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/display-video",
"https://www.googleapis.com/auth/doubleclickbidmanager"
]
}
}
}
}
},
"targetingTypes": {
"resources": {
"targetingOptions": {
Expand Down Expand Up @@ -9222,7 +9256,7 @@
}
}
},
"revision": "20250124",
"revision": "20250129",
"rootUrl": "https://displayvideo.googleapis.com/",
"schemas": {
"ActiveViewVideoViewabilityMetricConfig": {
Expand Down Expand Up @@ -21115,6 +21149,89 @@
},
"type": "object"
},
"SdfUploadTask": {
"description": "Type for the response returned by [SdfUploadTaskService.CreateSdfUploadTask].",
"id": "SdfUploadTask",
"properties": {
"resourceName": {
"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}`.",
"type": "string"
}
},
"type": "object"
},
"SdfUploadTaskMetadata": {
"description": "Type for the metadata returned by [SdfUploadTaskService.CreateSdfUploadTask].",
"id": "SdfUploadTaskMetadata",
"properties": {
"createTime": {
"description": "The time when the operation was created.",
"format": "google-datetime",
"type": "string"
},
"endTime": {
"description": "The time when execution was completed.",
"format": "google-datetime",
"type": "string"
},
"version": {
"description": "The SDF version used to execute this upload task.",
"enum": [
"SDF_VERSION_UNSPECIFIED",
"SDF_VERSION_3_1",
"SDF_VERSION_4",
"SDF_VERSION_4_1",
"SDF_VERSION_4_2",
"SDF_VERSION_5",
"SDF_VERSION_5_1",
"SDF_VERSION_5_2",
"SDF_VERSION_5_3",
"SDF_VERSION_5_4",
"SDF_VERSION_5_5",
"SDF_VERSION_6",
"SDF_VERSION_7",
"SDF_VERSION_7_1",
"SDF_VERSION_8"
],
"enumDeprecated": [
false,
true,
true,
true,
true,
true,
true,
true,
true,
true,
true,
false,
false,
false,
false
],
"enumDescriptions": [
"SDF version value is not specified or is unknown in this version.",
"SDF version 3.1",
"SDF version 4",
"SDF version 4.1",
"SDF version 4.2",
"SDF version 5.",
"SDF version 5.1",
"SDF version 5.2",
"SDF version 5.3",
"SDF version 5.4",
"SDF version 5.5",
"SDF version 6",
"SDF version 7. Read the [v7 migration guide](/display-video/api/structured-data-file/v7-migration-guide) before migrating to this version.",
"SDF version 7.1. Read the [v7 migration guide](/display-video/api/structured-data-file/v7-migration-guide) before migrating to this version.",
"SDF version 8. Read the [v8 migration guide](/display-video/api/structured-data-file/v8-migration-guide) before migrating to this version."
],
"type": "string"
}
},
"type": "object"
},
"SearchTargetingOptionsRequest": {
"description": "Request message for SearchTargetingOptions.",
"id": "SearchTargetingOptionsRequest",
Expand Down
Loading

0 comments on commit f812ea5

Please sign in to comment.