google-apis-dataproc_v1 0.95.0 → 0.96.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5633a1909b84cf44385a2ea312730fb525c2d53c35da5aa218ca31c7ab8dc297
|
|
4
|
+
data.tar.gz: 76522d7671f731912c970d139e84ca0bde43f6e8e8f70bec9c84febd65fbaf4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 586eab8f3e109d7106b7f6330d885b5381200185836ef00a1b78d4fd04859608de994fa0f773184b6647fb7f7ea87d0dbdc139bd8ac05a4b3b92a7f52d8dd5d3
|
|
7
|
+
data.tar.gz: 11377973b8ae5dfc18daa2c2a94bc923311c426318d9680f376d6268f1f968f924fa243998b8097a33d4418d6f871811422f3b45982c1ae1d30047aecb4e87d9
|
data/CHANGELOG.md
CHANGED
|
@@ -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/
|
|
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/
|
|
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
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.96.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 = "
|
|
25
|
+
REVISION = "20260612"
|
|
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
|
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.
|
|
4
|
+
version: 0.96.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.96.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:
|