google-apis-dataproc_v1 0.70.0 → 0.72.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: cd76a0dcf7a5a2cb43bc1194cba9e613922cb04e5ec03e1a7a0e103279054ed7
|
4
|
+
data.tar.gz: c309cf26b25a3fee6b96a32c1ab0c4e487707db9bfbd2c3ef5230fb0268dafc2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d890f8ad257c3c1fb699c2c9c29e5fc51a538afb52909c8c7b285437a379e66592054e2de915174dc0b7ebb1efa6238ad3164a1bc33515def0f3cd4234f35e31
|
7
|
+
data.tar.gz: cd752ea1c4b1804855e4d9758d6acbcbb5227cae13711cc3e0929b09f7e9faf2b1187be602eba426e1379f009ed1dbacbbae03bc9612bf377cfe8ae82736e793
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dataproc_v1
|
2
2
|
|
3
|
+
### v0.72.0 (2024-09-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240821
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.71.0 (2024-06-23)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240617
|
11
|
+
|
3
12
|
### v0.70.0 (2024-06-09)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240605
|
@@ -1287,6 +1287,21 @@ module Google
|
|
1287
1287
|
class DiskConfig
|
1288
1288
|
include Google::Apis::Core::Hashable
|
1289
1289
|
|
1290
|
+
# Optional. Indicates how many IOPS to provision for the disk. This sets the
|
1291
|
+
# number of I/O operations per second that the disk can handle. Note: This field
|
1292
|
+
# is only supported if boot_disk_type is hyperdisk-balanced.
|
1293
|
+
# Corresponds to the JSON property `bootDiskProvisionedIops`
|
1294
|
+
# @return [Fixnum]
|
1295
|
+
attr_accessor :boot_disk_provisioned_iops
|
1296
|
+
|
1297
|
+
# Optional. Indicates how much throughput to provision for the disk. This sets
|
1298
|
+
# the number of throughput mb per second that the disk can handle. Values must
|
1299
|
+
# be greater than or equal to 1. Note: This field is only supported if
|
1300
|
+
# boot_disk_type is hyperdisk-balanced.
|
1301
|
+
# Corresponds to the JSON property `bootDiskProvisionedThroughput`
|
1302
|
+
# @return [Fixnum]
|
1303
|
+
attr_accessor :boot_disk_provisioned_throughput
|
1304
|
+
|
1290
1305
|
# Optional. Size in GB of the boot disk (default is 500GB).
|
1291
1306
|
# Corresponds to the JSON property `bootDiskSizeGb`
|
1292
1307
|
# @return [Fixnum]
|
@@ -1324,6 +1339,8 @@ module Google
|
|
1324
1339
|
|
1325
1340
|
# Update properties of this object
|
1326
1341
|
def update!(**args)
|
1342
|
+
@boot_disk_provisioned_iops = args[:boot_disk_provisioned_iops] if args.key?(:boot_disk_provisioned_iops)
|
1343
|
+
@boot_disk_provisioned_throughput = args[:boot_disk_provisioned_throughput] if args.key?(:boot_disk_provisioned_throughput)
|
1327
1344
|
@boot_disk_size_gb = args[:boot_disk_size_gb] if args.key?(:boot_disk_size_gb)
|
1328
1345
|
@boot_disk_type = args[:boot_disk_type] if args.key?(:boot_disk_type)
|
1329
1346
|
@local_ssd_interface = args[:local_ssd_interface] if args.key?(:local_ssd_interface)
|
@@ -1771,8 +1788,8 @@ module Google
|
|
1771
1788
|
# @return [String]
|
1772
1789
|
attr_accessor :subnetwork_uri
|
1773
1790
|
|
1774
|
-
# The Compute Engine tags to add to all instances (see Tagging instances
|
1775
|
-
#
|
1791
|
+
# The Compute Engine network tags to add to all instances (see Tagging instances
|
1792
|
+
# (https://cloud.google.com/vpc/docs/add-remove-network-tags)).
|
1776
1793
|
# Corresponds to the JSON property `tags`
|
1777
1794
|
# @return [Array<String>]
|
1778
1795
|
attr_accessor :tags
|
@@ -4935,6 +4952,11 @@ module Google
|
|
4935
4952
|
# @return [String]
|
4936
4953
|
attr_accessor :session_template
|
4937
4954
|
|
4955
|
+
# Spark connect configuration for an interactive session.
|
4956
|
+
# Corresponds to the JSON property `sparkConnectSession`
|
4957
|
+
# @return [Google::Apis::DataprocV1::SparkConnectConfig]
|
4958
|
+
attr_accessor :spark_connect_session
|
4959
|
+
|
4938
4960
|
# Output only. A state of the session.
|
4939
4961
|
# Corresponds to the JSON property `state`
|
4940
4962
|
# @return [String]
|
@@ -4982,6 +5004,7 @@ module Google
|
|
4982
5004
|
@runtime_config = args[:runtime_config] if args.key?(:runtime_config)
|
4983
5005
|
@runtime_info = args[:runtime_info] if args.key?(:runtime_info)
|
4984
5006
|
@session_template = args[:session_template] if args.key?(:session_template)
|
5007
|
+
@spark_connect_session = args[:spark_connect_session] if args.key?(:spark_connect_session)
|
4985
5008
|
@state = args[:state] if args.key?(:state)
|
4986
5009
|
@state_history = args[:state_history] if args.key?(:state_history)
|
4987
5010
|
@state_message = args[:state_message] if args.key?(:state_message)
|
@@ -5131,6 +5154,11 @@ module Google
|
|
5131
5154
|
# @return [Google::Apis::DataprocV1::RuntimeConfig]
|
5132
5155
|
attr_accessor :runtime_config
|
5133
5156
|
|
5157
|
+
# Spark connect configuration for an interactive session.
|
5158
|
+
# Corresponds to the JSON property `sparkConnectSession`
|
5159
|
+
# @return [Google::Apis::DataprocV1::SparkConnectConfig]
|
5160
|
+
attr_accessor :spark_connect_session
|
5161
|
+
|
5134
5162
|
# Output only. The time the template was last updated.
|
5135
5163
|
# Corresponds to the JSON property `updateTime`
|
5136
5164
|
# @return [String]
|
@@ -5156,6 +5184,7 @@ module Google
|
|
5156
5184
|
@labels = args[:labels] if args.key?(:labels)
|
5157
5185
|
@name = args[:name] if args.key?(:name)
|
5158
5186
|
@runtime_config = args[:runtime_config] if args.key?(:runtime_config)
|
5187
|
+
@spark_connect_session = args[:spark_connect_session] if args.key?(:spark_connect_session)
|
5159
5188
|
@update_time = args[:update_time] if args.key?(:update_time)
|
5160
5189
|
@uuid = args[:uuid] if args.key?(:uuid)
|
5161
5190
|
end
|
@@ -5247,8 +5276,8 @@ module Google
|
|
5247
5276
|
|
5248
5277
|
# Optional. The version of software inside the cluster. It must be one of the
|
5249
5278
|
# supported Dataproc Versions (https://cloud.google.com/dataproc/docs/concepts/
|
5250
|
-
# versioning/dataproc-versions#
|
5251
|
-
# including a subminor version, such as "1.2.29"), or the "preview" version (
|
5279
|
+
# versioning/dataproc-versions#supported-dataproc-image-versions), such as "1.2"
|
5280
|
+
# (including a subminor version, such as "1.2.29"), or the "preview" version (
|
5252
5281
|
# https://cloud.google.com/dataproc/docs/concepts/versioning/dataproc-versions#
|
5253
5282
|
# other_versions). If unspecified, it defaults to the latest Debian version.
|
5254
5283
|
# Corresponds to the JSON property `imageVersion`
|
@@ -5340,6 +5369,19 @@ module Google
|
|
5340
5369
|
end
|
5341
5370
|
end
|
5342
5371
|
|
5372
|
+
# Spark connect configuration for an interactive session.
|
5373
|
+
class SparkConnectConfig
|
5374
|
+
include Google::Apis::Core::Hashable
|
5375
|
+
|
5376
|
+
def initialize(**args)
|
5377
|
+
update!(**args)
|
5378
|
+
end
|
5379
|
+
|
5380
|
+
# Update properties of this object
|
5381
|
+
def update!(**args)
|
5382
|
+
end
|
5383
|
+
end
|
5384
|
+
|
5343
5385
|
# Spark History Server configuration for the workload.
|
5344
5386
|
class SparkHistoryServerConfig
|
5345
5387
|
include Google::Apis::Core::Hashable
|
@@ -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.72.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240821"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -712,6 +712,12 @@ module Google
|
|
712
712
|
include Google::Apis::Core::JsonObjectSupport
|
713
713
|
end
|
714
714
|
|
715
|
+
class SparkConnectConfig
|
716
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
717
|
+
|
718
|
+
include Google::Apis::Core::JsonObjectSupport
|
719
|
+
end
|
720
|
+
|
715
721
|
class SparkHistoryServerConfig
|
716
722
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
717
723
|
|
@@ -1199,6 +1205,8 @@ module Google
|
|
1199
1205
|
class DiskConfig
|
1200
1206
|
# @private
|
1201
1207
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1208
|
+
property :boot_disk_provisioned_iops, :numeric_string => true, as: 'bootDiskProvisionedIops'
|
1209
|
+
property :boot_disk_provisioned_throughput, :numeric_string => true, as: 'bootDiskProvisionedThroughput'
|
1202
1210
|
property :boot_disk_size_gb, as: 'bootDiskSizeGb'
|
1203
1211
|
property :boot_disk_type, as: 'bootDiskType'
|
1204
1212
|
property :local_ssd_interface, as: 'localSsdInterface'
|
@@ -2098,6 +2106,8 @@ module Google
|
|
2098
2106
|
property :runtime_info, as: 'runtimeInfo', class: Google::Apis::DataprocV1::RuntimeInfo, decorator: Google::Apis::DataprocV1::RuntimeInfo::Representation
|
2099
2107
|
|
2100
2108
|
property :session_template, as: 'sessionTemplate'
|
2109
|
+
property :spark_connect_session, as: 'sparkConnectSession', class: Google::Apis::DataprocV1::SparkConnectConfig, decorator: Google::Apis::DataprocV1::SparkConnectConfig::Representation
|
2110
|
+
|
2101
2111
|
property :state, as: 'state'
|
2102
2112
|
collection :state_history, as: 'stateHistory', class: Google::Apis::DataprocV1::SessionStateHistory, decorator: Google::Apis::DataprocV1::SessionStateHistory::Representation
|
2103
2113
|
|
@@ -2145,6 +2155,8 @@ module Google
|
|
2145
2155
|
property :name, as: 'name'
|
2146
2156
|
property :runtime_config, as: 'runtimeConfig', class: Google::Apis::DataprocV1::RuntimeConfig, decorator: Google::Apis::DataprocV1::RuntimeConfig::Representation
|
2147
2157
|
|
2158
|
+
property :spark_connect_session, as: 'sparkConnectSession', class: Google::Apis::DataprocV1::SparkConnectConfig, decorator: Google::Apis::DataprocV1::SparkConnectConfig::Representation
|
2159
|
+
|
2148
2160
|
property :update_time, as: 'updateTime'
|
2149
2161
|
property :uuid, as: 'uuid'
|
2150
2162
|
end
|
@@ -2188,6 +2200,12 @@ module Google
|
|
2188
2200
|
end
|
2189
2201
|
end
|
2190
2202
|
|
2203
|
+
class SparkConnectConfig
|
2204
|
+
# @private
|
2205
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2206
|
+
end
|
2207
|
+
end
|
2208
|
+
|
2191
2209
|
class SparkHistoryServerConfig
|
2192
2210
|
# @private
|
2193
2211
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.72.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataproc_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.72.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataproc_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|