Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2192)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Sep 30, 2023
1 parent 0132460 commit 8a3eb9b
Show file tree
Hide file tree
Showing 10 changed files with 10,151 additions and 789 deletions.
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

0 comments on commit 8a3eb9b

Please sign in to comment.