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: Automated regeneration of Dataproc client #12807

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
2 changes: 1 addition & 1 deletion clients/dataproc/lib/google_api/dataproc/v1/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Dataproc.V1 do
API client metadata for GoogleApi.Dataproc.V1.
"""

@discovery_revision "20241025"
@discovery_revision "20250111"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ defmodule GoogleApi.Dataproc.V1.Model.DiskConfig do

## Attributes

* `bootDiskProvisionedIops` (*type:* `String.t`, *default:* `nil`) - Optional. Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. Note: This field is only supported if boot_disk_type is hyperdisk-balanced.
* `bootDiskProvisionedThroughput` (*type:* `String.t`, *default:* `nil`) - Optional. Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle. Values must be greater than or equal to 1. Note: This field is only supported if boot_disk_type is hyperdisk-balanced.
* `bootDiskProvisionedIops` (*type:* `String.t`, *default:* `nil`) - Optional. Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. This field is supported only if boot_disk_type is hyperdisk-balanced.
* `bootDiskProvisionedThroughput` (*type:* `String.t`, *default:* `nil`) - Optional. Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle. Values must be greater than or equal to 1. This field is supported only if boot_disk_type is hyperdisk-balanced.
* `bootDiskSizeGb` (*type:* `integer()`, *default:* `nil`) - Optional. Size in GB of the boot disk (default is 500GB).
* `bootDiskType` (*type:* `String.t`, *default:* `nil`) - Optional. Type of the boot disk (default is "pd-standard"). Valid values: "pd-balanced" (Persistent Disk Balanced Solid State Drive), "pd-ssd" (Persistent Disk Solid State Drive), or "pd-standard" (Persistent Disk Hard Disk Drive). See Disk types (https://cloud.google.com/compute/docs/disks#disk-types).
* `localSsdInterface` (*type:* `String.t`, *default:* `nil`) - Optional. Interface type of local SSDs (default is "scsi"). Valid values: "scsi" (Small Computer System Interface), "nvme" (Non-Volatile Memory Express). See local SSD performance (https://cloud.google.com/compute/docs/disks/local-ssd#performance).
Expand Down
2 changes: 1 addition & 1 deletion clients/dataproc/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.Dataproc.Mixfile do
use Mix.Project

@version "0.58.1"
@version "0.58.2"

def project() do
[
Expand Down
Loading