google-apis-dataproc_v1 0.95.0 → 0.97.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61b235fb1c781d2bd38e07515a54828781fbc21cb226dd865b9ba1943a7b749f
4
- data.tar.gz: cfd6880fe08910e1aa6fca4c50e61c6beb9098d86ac03c1410a6fbed988ad209
3
+ metadata.gz: 3ece10c4d37dd5f82f014f74a201630a06b2592b4e0b16ef98a12a7b26f5fbd5
4
+ data.tar.gz: 18780b2cea1619fc86729c72176381cc93999a2136f236bae115dd44a2de5143
5
5
  SHA512:
6
- metadata.gz: e94c71de8611db992515d875847e35ee580b52758f248e79ee085097b18f8c19591f672d42ecebb5f42307b5e9e2d0069cedad9242eae5cfae24825a5876cd37
7
- data.tar.gz: 280982eae76fb83bb8bf0505324004181a5f21611365d92ebfb3806dfcde8014696f5462f7411fae1d7d2f808c09ce3b412bc10a410c0fdefb52a053bfaf2538
6
+ metadata.gz: 6895619d33eaa0b3d14cef5143dfe1ae11fe24f052eddb88270d9324004a89b32fa53425b517af69fc96849d2cdf6a5f417fdb859b1d7096b758d9327633e8be
7
+ data.tar.gz: ddb7e0fede99be1c614a47b21715fc0de17cf8f17b6b0932bcfa7ff530b499ab0138aa9c329b41733c540a7cb8c8cea659984a6e1c07c604044af03e369dd28b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataproc_v1
2
2
 
3
+ ### v0.97.0 (2026-07-05)
4
+
5
+ * Regenerated from discovery document revision 20260625
6
+
7
+ ### v0.96.0 (2026-06-21)
8
+
9
+ * Regenerated from discovery document revision 20260612
10
+
3
11
  ### v0.95.0 (2026-06-14)
4
12
 
5
13
  * Regenerated from discovery document revision 20260524
@@ -1853,10 +1853,15 @@ module Google
1853
1853
  end
1854
1854
 
1855
1855
  # Confidential Instance Config for clusters using Confidential VMs (https://
1856
- # cloud.google.com/compute/confidential-vm/docs)
1856
+ # cloud.google.com/confidential-computing/confidential-vm/docs)
1857
1857
  class ConfidentialInstanceConfig
1858
1858
  include Google::Apis::Core::Hashable
1859
1859
 
1860
+ # Optional. Defines the type of Confidential Compute technology to use.
1861
+ # Corresponds to the JSON property `confidentialInstanceType`
1862
+ # @return [String]
1863
+ attr_accessor :confidential_instance_type
1864
+
1860
1865
  # Optional. Deprecated: Use 'confidential_instance_type' instead. Defines
1861
1866
  # whether the instance should have confidential compute enabled.
1862
1867
  # Corresponds to the JSON property `enableConfidentialCompute`
@@ -1870,6 +1875,7 @@ module Google
1870
1875
 
1871
1876
  # Update properties of this object
1872
1877
  def update!(**args)
1878
+ @confidential_instance_type = args[:confidential_instance_type] if args.key?(:confidential_instance_type)
1873
1879
  @enable_confidential_compute = args[:enable_confidential_compute] if args.key?(:enable_confidential_compute)
1874
1880
  end
1875
1881
  end
@@ -3076,7 +3082,7 @@ module Google
3076
3082
  attr_accessor :auto_zone_exclude_zone_uris
3077
3083
 
3078
3084
  # Confidential Instance Config for clusters using Confidential VMs (https://
3079
- # cloud.google.com/compute/confidential-vm/docs)
3085
+ # cloud.google.com/confidential-computing/confidential-vm/docs)
3080
3086
  # Corresponds to the JSON property `confidentialInstanceConfig`
3081
3087
  # @return [Google::Apis::DataprocV1::ConfidentialInstanceConfig]
3082
3088
  attr_accessor :confidential_instance_config
@@ -3350,6 +3356,15 @@ module Google
3350
3356
  attr_accessor :preemptible
3351
3357
  alias_method :preemptible?, :preemptible
3352
3358
 
3359
+ # Optional. Specifies the service account (https://cloud.google.com/dataproc/
3360
+ # docs/guides/dpgke/dataproc-gke-iam) to be used by the node pools. Specify the
3361
+ # email address of the service account or its full resource name.Format:
3362
+ # projects/`project`/serviceAccounts/`service_account_email` or `
3363
+ # service_account_email`.
3364
+ # Corresponds to the JSON property `serviceAccount`
3365
+ # @return [String]
3366
+ attr_accessor :service_account
3367
+
3353
3368
  # Optional. Whether the nodes are created as Spot VM instances (https://cloud.
3354
3369
  # google.com/compute/docs/instances/spot). Spot VMs are the latest update to
3355
3370
  # legacy preemptible VMs. Spot VMs do not have a maximum lifetime. Legacy and
@@ -3373,6 +3388,7 @@ module Google
3373
3388
  @machine_type = args[:machine_type] if args.key?(:machine_type)
3374
3389
  @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
3375
3390
  @preemptible = args[:preemptible] if args.key?(:preemptible)
3391
+ @service_account = args[:service_account] if args.key?(:service_account)
3376
3392
  @spot = args[:spot] if args.key?(:spot)
3377
3393
  end
3378
3394
  end
@@ -4049,6 +4065,12 @@ module Google
4049
4065
  class InstanceSelection
4050
4066
  include Google::Apis::Core::Hashable
4051
4067
 
4068
+ # Specifies the config of boot disk and attached disk options for a group of VM
4069
+ # instances.
4070
+ # Corresponds to the JSON property `diskConfig`
4071
+ # @return [Google::Apis::DataprocV1::DiskConfig]
4072
+ attr_accessor :disk_config
4073
+
4052
4074
  # Optional. Full machine-type names, e.g. "n1-standard-16".
4053
4075
  # Corresponds to the JSON property `machineTypes`
4054
4076
  # @return [Array<String>]
@@ -4069,6 +4091,7 @@ module Google
4069
4091
 
4070
4092
  # Update properties of this object
4071
4093
  def update!(**args)
4094
+ @disk_config = args[:disk_config] if args.key?(:disk_config)
4072
4095
  @machine_types = args[:machine_types] if args.key?(:machine_types)
4073
4096
  @rank = args[:rank] if args.key?(:rank)
4074
4097
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataprocV1
18
18
  # Version of the google-apis-dataproc_v1 gem
19
- GEM_VERSION = "0.95.0"
19
+ GEM_VERSION = "0.97.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260524"
25
+ REVISION = "20260625"
26
26
  end
27
27
  end
28
28
  end
@@ -2130,6 +2130,7 @@ module Google
2130
2130
  class ConfidentialInstanceConfig
2131
2131
  # @private
2132
2132
  class Representation < Google::Apis::Core::JsonRepresentation
2133
+ property :confidential_instance_type, as: 'confidentialInstanceType'
2133
2134
  property :enable_confidential_compute, as: 'enableConfidentialCompute'
2134
2135
  end
2135
2136
  end
@@ -2464,6 +2465,7 @@ module Google
2464
2465
  property :machine_type, as: 'machineType'
2465
2466
  property :min_cpu_platform, as: 'minCpuPlatform'
2466
2467
  property :preemptible, as: 'preemptible'
2468
+ property :service_account, as: 'serviceAccount'
2467
2469
  property :spot, as: 'spot'
2468
2470
  end
2469
2471
  end
@@ -2635,6 +2637,8 @@ module Google
2635
2637
  class InstanceSelection
2636
2638
  # @private
2637
2639
  class Representation < Google::Apis::Core::JsonRepresentation
2640
+ property :disk_config, as: 'diskConfig', class: Google::Apis::DataprocV1::DiskConfig, decorator: Google::Apis::DataprocV1::DiskConfig::Representation
2641
+
2638
2642
  collection :machine_types, as: 'machineTypes'
2639
2643
  property :rank, as: 'rank'
2640
2644
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataproc_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.95.0
4
+ version: 0.97.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataproc_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.95.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.97.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataproc_v1
62
62
  rdoc_options: []
63
63
  require_paths: