google-apis-dataproc_v1 0.89.0 → 0.90.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: cc0439a50307e79108dd9f80f58a12b7d23835cf80cc4e981e9bacbda6ae8b75
|
|
4
|
+
data.tar.gz: af07e9be7f3c401ed5bac5e74dc48e4dee07400450105640bed4c78d38f97931
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ba88ac7857e0d607a2c540fa2d1b89da8e8e9b9d1608a8d81a03b02af2326293c1ebf98b616b7362fb24a34554a379be518b7d1ac2f55eea049933d8554ceea
|
|
7
|
+
data.tar.gz: 1e5e1ebf1e9b0415c4bf347f5ab363a3c9ba93e9450a9b6a4237acb6c3c10afea11e828d3b9d2a48328f5d0c106942e6c2fc82a17ab9951e80a8a3709c3abc57
|
data/CHANGELOG.md
CHANGED
|
@@ -670,6 +670,47 @@ module Google
|
|
|
670
670
|
end
|
|
671
671
|
end
|
|
672
672
|
|
|
673
|
+
# Specifies the config of attached disk options for single VM instance.
|
|
674
|
+
class AttachedDiskConfig
|
|
675
|
+
include Google::Apis::Core::Hashable
|
|
676
|
+
|
|
677
|
+
# Optional. Disk size in GB.
|
|
678
|
+
# Corresponds to the JSON property `diskSizeGb`
|
|
679
|
+
# @return [Fixnum]
|
|
680
|
+
attr_accessor :disk_size_gb
|
|
681
|
+
|
|
682
|
+
# Optional. Disk type.
|
|
683
|
+
# Corresponds to the JSON property `diskType`
|
|
684
|
+
# @return [String]
|
|
685
|
+
attr_accessor :disk_type
|
|
686
|
+
|
|
687
|
+
# Optional. Indicates how many IOPS to provision for the attached disk. This
|
|
688
|
+
# sets the number of I/O operations per second that the disk can handle. See
|
|
689
|
+
# https://cloud.google.com/compute/docs/disks/hyperdisks#hyperdisk-features
|
|
690
|
+
# Corresponds to the JSON property `provisionedIops`
|
|
691
|
+
# @return [Fixnum]
|
|
692
|
+
attr_accessor :provisioned_iops
|
|
693
|
+
|
|
694
|
+
# Optional. Indicates how much throughput to provision for the attached disk.
|
|
695
|
+
# This sets the number of throughput mb per second that the disk can handle. See
|
|
696
|
+
# https://cloud.google.com/compute/docs/disks/hyperdisks#hyperdisk-features
|
|
697
|
+
# Corresponds to the JSON property `provisionedThroughput`
|
|
698
|
+
# @return [Fixnum]
|
|
699
|
+
attr_accessor :provisioned_throughput
|
|
700
|
+
|
|
701
|
+
def initialize(**args)
|
|
702
|
+
update!(**args)
|
|
703
|
+
end
|
|
704
|
+
|
|
705
|
+
# Update properties of this object
|
|
706
|
+
def update!(**args)
|
|
707
|
+
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
|
708
|
+
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
|
709
|
+
@provisioned_iops = args[:provisioned_iops] if args.key?(:provisioned_iops)
|
|
710
|
+
@provisioned_throughput = args[:provisioned_throughput] if args.key?(:provisioned_throughput)
|
|
711
|
+
end
|
|
712
|
+
end
|
|
713
|
+
|
|
673
714
|
# Authentication configuration for a workload is used to set the default
|
|
674
715
|
# identity for the workload execution. The config specifies the type of identity
|
|
675
716
|
# (service account or user) that will be used by workloads to access resources
|
|
@@ -2022,6 +2063,11 @@ module Google
|
|
|
2022
2063
|
class DiskConfig
|
|
2023
2064
|
include Google::Apis::Core::Hashable
|
|
2024
2065
|
|
|
2066
|
+
# Optional. A list of attached disk configs for a group of VM instances.
|
|
2067
|
+
# Corresponds to the JSON property `attachedDiskConfigs`
|
|
2068
|
+
# @return [Array<Google::Apis::DataprocV1::AttachedDiskConfig>]
|
|
2069
|
+
attr_accessor :attached_disk_configs
|
|
2070
|
+
|
|
2025
2071
|
# Optional. Indicates how many IOPS to provision for the disk. This sets the
|
|
2026
2072
|
# number of I/O operations per second that the disk can handle. This field is
|
|
2027
2073
|
# supported only if boot_disk_type is hyperdisk-balanced.
|
|
@@ -2074,6 +2120,7 @@ module Google
|
|
|
2074
2120
|
|
|
2075
2121
|
# Update properties of this object
|
|
2076
2122
|
def update!(**args)
|
|
2123
|
+
@attached_disk_configs = args[:attached_disk_configs] if args.key?(:attached_disk_configs)
|
|
2077
2124
|
@boot_disk_provisioned_iops = args[:boot_disk_provisioned_iops] if args.key?(:boot_disk_provisioned_iops)
|
|
2078
2125
|
@boot_disk_provisioned_throughput = args[:boot_disk_provisioned_throughput] if args.key?(:boot_disk_provisioned_throughput)
|
|
2079
2126
|
@boot_disk_size_gb = args[:boot_disk_size_gb] if args.key?(:boot_disk_size_gb)
|
|
@@ -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.90.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260219"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -154,6 +154,12 @@ module Google
|
|
|
154
154
|
include Google::Apis::Core::JsonObjectSupport
|
|
155
155
|
end
|
|
156
156
|
|
|
157
|
+
class AttachedDiskConfig
|
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
159
|
+
|
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
161
|
+
end
|
|
162
|
+
|
|
157
163
|
class AuthenticationConfig
|
|
158
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
159
165
|
|
|
@@ -1811,6 +1817,16 @@ module Google
|
|
|
1811
1817
|
end
|
|
1812
1818
|
end
|
|
1813
1819
|
|
|
1820
|
+
class AttachedDiskConfig
|
|
1821
|
+
# @private
|
|
1822
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1823
|
+
property :disk_size_gb, as: 'diskSizeGb'
|
|
1824
|
+
property :disk_type, as: 'diskType'
|
|
1825
|
+
property :provisioned_iops, :numeric_string => true, as: 'provisionedIops'
|
|
1826
|
+
property :provisioned_throughput, :numeric_string => true, as: 'provisionedThroughput'
|
|
1827
|
+
end
|
|
1828
|
+
end
|
|
1829
|
+
|
|
1814
1830
|
class AuthenticationConfig
|
|
1815
1831
|
# @private
|
|
1816
1832
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2151,6 +2167,8 @@ module Google
|
|
|
2151
2167
|
class DiskConfig
|
|
2152
2168
|
# @private
|
|
2153
2169
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2170
|
+
collection :attached_disk_configs, as: 'attachedDiskConfigs', class: Google::Apis::DataprocV1::AttachedDiskConfig, decorator: Google::Apis::DataprocV1::AttachedDiskConfig::Representation
|
|
2171
|
+
|
|
2154
2172
|
property :boot_disk_provisioned_iops, :numeric_string => true, as: 'bootDiskProvisionedIops'
|
|
2155
2173
|
property :boot_disk_provisioned_throughput, :numeric_string => true, as: 'bootDiskProvisionedThroughput'
|
|
2156
2174
|
property :boot_disk_size_gb, as: 'bootDiskSizeGb'
|
|
@@ -4501,11 +4501,13 @@ module Google
|
|
|
4501
4501
|
# @param [String] filter
|
|
4502
4502
|
# Optional. A filter constraining the jobs to list. Filters are case-sensitive
|
|
4503
4503
|
# and have the following syntax:field = value AND field = value ...where field
|
|
4504
|
-
# is status.state or labels.[KEY], and [KEY] is a label key.
|
|
4505
|
-
# match all values. status.state can be either ACTIVE or
|
|
4506
|
-
#
|
|
4507
|
-
#
|
|
4508
|
-
#
|
|
4504
|
+
# is status.state or insertTime, or labels.[KEY], and [KEY] is a label key.
|
|
4505
|
+
# value can be * to match all values. status.state can be either ACTIVE or
|
|
4506
|
+
# NON_ACTIVE. Allows insertTime to be a timestamp in RFC 3339 format in double
|
|
4507
|
+
# quotes, such as 2025-01-01T00:00:00Z. Only the logical AND operator is
|
|
4508
|
+
# supported; space-separated items are treated as having an implicit AND
|
|
4509
|
+
# operator.Example filter:status.state = ACTIVE AND labels.env = staging AND
|
|
4510
|
+
# labels.starred = * AND insertTime <= "2025-01-01T00:00:00Z"
|
|
4509
4511
|
# @param [String] job_state_matcher
|
|
4510
4512
|
# Optional. Specifies enumerated categories of jobs to list. (default = match
|
|
4511
4513
|
# ALL jobs).If filter is provided, jobStateMatcher will be ignored.
|
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.90.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.90.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:
|