Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2192

Merged
merged 1 commit into from
Sep 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,068 changes: 1,068 additions & 0 deletions backupdr/v1/backupdr-api.json

Large diffs are not rendered by default.

3,332 changes: 3,332 additions & 0 deletions backupdr/v1/backupdr-gen.go

Large diffs are not rendered by default.

317 changes: 302 additions & 15 deletions compute/v0.alpha/compute-api.json

Large diffs are not rendered by default.

750 changes: 689 additions & 61 deletions compute/v0.alpha/compute-gen.go

Large diffs are not rendered by default.

999 changes: 983 additions & 16 deletions compute/v0.beta/compute-api.json

Large diffs are not rendered by default.

4,114 changes: 3,556 additions & 558 deletions compute/v0.beta/compute-gen.go

Large diffs are not rendered by default.

22 changes: 21 additions & 1 deletion dataproc/v1/dataproc-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -3001,7 +3001,7 @@
}
}
},
"revision": "20230919",
"revision": "20230926",
"rootUrl": "https://dataproc.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down Expand Up @@ -4496,6 +4496,10 @@
"Instances are Spot VMs (https://cloud.google.com/compute/docs/instances/spot).This option is allowed only for secondary worker (https://cloud.google.com/dataproc/docs/concepts/compute/secondary-vms) groups. Spot VMs are the latest version of preemptible VMs (https://cloud.google.com/compute/docs/instances/preemptible), and provide additional features."
],
"type": "string"
},
"startupConfig": {
"$ref": "StartupConfig",
"description": "Optional. Configuration to handle the startup of instances during cluster create and update process."
}
},
"type": "object"
Expand Down Expand Up @@ -6640,6 +6644,10 @@
"format": "google-duration",
"type": "string"
},
"removeOnlyIdleWorkers": {
"description": "Optional. Remove only idle workers when scaling down cluster",
"type": "boolean"
},
"scaleDownFactor": {
"description": "Required. Fraction of required executors to remove from Spark Serverless clusters. A scale-down factor of 1.0 will result in scaling down so that there are no more executors for the Spark Job.(more aggressive scaling). A scale-down factor closer to 0 will result in a smaller magnitude of scaling donw (less aggressive scaling).Bounds: 0.0, 1.0.",
"format": "double",
Expand Down Expand Up @@ -6678,6 +6686,18 @@
},
"type": "object"
},
"StartupConfig": {
"description": "Configuration to handle the startup of instances during cluster create and update process.",
"id": "StartupConfig",
"properties": {
"requiredRegistrationFraction": {
"description": "Optional. The config setting to enable cluster creation/ updation to be successful only after required_registration_fraction of instances are up and running. This configuration is applicable to only secondary workers for now. The cluster will fail if required_registration_fraction of instances are not available. This will include instance creation, agent registration, and service registration (if enabled).",
"format": "double",
"type": "number"
}
},
"type": "object"
},
"StateHistory": {
"description": "Historical state information.",
"id": "StateHistory",
Expand Down
59 changes: 59 additions & 0 deletions dataproc/v1/dataproc-gen.go

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

Loading