google-apis-dataproc_v1 0.93.0 → 0.94.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: 5dcfbbcb2d21dabdbb6718573f670c31f5ef8694c97d2db335497b5c46de89ca
|
|
4
|
+
data.tar.gz: dd18f623bb3c4fc4d6cd82e74481a58bc7dcd15de29f0b282a00994b648d124f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87ed2f92c7dc060465be854d3c6e454373d49b3c75653722161fae436a6a3786f7e1addcf430857d21c7a1f4203672fee4f310638c295953dc177154eb7380f7
|
|
7
|
+
data.tar.gz: 6980e2cd77e8cb2b6aa0b8feab48b3bf92f1a3222ec2b65e4312f32348246802dc36cb197b4b0bbcdf93b458c696ac873554a0c4bea5f53293c741265064f69b
|
data/CHANGELOG.md
CHANGED
|
@@ -11747,18 +11747,39 @@ module Google
|
|
|
11747
11747
|
class UsageMetrics
|
|
11748
11748
|
include Google::Apis::Core::Hashable
|
|
11749
11749
|
|
|
11750
|
-
# Optional.
|
|
11750
|
+
# Optional. Accelerator type being used, if any Deprecated: This field is only
|
|
11751
|
+
# used in runtime versions below 3.0.
|
|
11751
11752
|
# Corresponds to the JSON property `acceleratorType`
|
|
11752
11753
|
# @return [String]
|
|
11753
11754
|
attr_accessor :accelerator_type
|
|
11754
11755
|
|
|
11755
|
-
# Optional.
|
|
11756
|
-
#
|
|
11757
|
-
#
|
|
11756
|
+
# Optional. Accelerator usage in (milliAccelerator x seconds) (see Dataproc
|
|
11757
|
+
# Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
|
|
11758
|
+
# Deprecated: This field is only used in runtime versions below 3.0.
|
|
11758
11759
|
# Corresponds to the JSON property `milliAcceleratorSeconds`
|
|
11759
11760
|
# @return [Fixnum]
|
|
11760
11761
|
attr_accessor :milli_accelerator_seconds
|
|
11761
11762
|
|
|
11763
|
+
# Optional. A100-40 accelerator usage in (milliAccelerator x seconds) (see
|
|
11764
|
+
# Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/
|
|
11765
|
+
# pricing)).
|
|
11766
|
+
# Corresponds to the JSON property `milliAcceleratorSecondsA10040`
|
|
11767
|
+
# @return [Fixnum]
|
|
11768
|
+
attr_accessor :milli_accelerator_seconds_a10040
|
|
11769
|
+
|
|
11770
|
+
# Optional. A100-80 accelerator usage in (milliAccelerator x seconds) (see
|
|
11771
|
+
# Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/
|
|
11772
|
+
# pricing)).
|
|
11773
|
+
# Corresponds to the JSON property `milliAcceleratorSecondsA10080`
|
|
11774
|
+
# @return [Fixnum]
|
|
11775
|
+
attr_accessor :milli_accelerator_seconds_a10080
|
|
11776
|
+
|
|
11777
|
+
# Optional. L4 accelerator usage in (milliAccelerator x seconds) (see Dataproc
|
|
11778
|
+
# Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
|
|
11779
|
+
# Corresponds to the JSON property `milliAcceleratorSecondsL4`
|
|
11780
|
+
# @return [Fixnum]
|
|
11781
|
+
attr_accessor :milli_accelerator_seconds_l4
|
|
11782
|
+
|
|
11762
11783
|
# Optional. DCU (Dataproc Compute Units) usage in (milliDCU x seconds) (see
|
|
11763
11784
|
# Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/
|
|
11764
11785
|
# pricing)).
|
|
@@ -11785,6 +11806,9 @@ module Google
|
|
|
11785
11806
|
def update!(**args)
|
|
11786
11807
|
@accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
|
|
11787
11808
|
@milli_accelerator_seconds = args[:milli_accelerator_seconds] if args.key?(:milli_accelerator_seconds)
|
|
11809
|
+
@milli_accelerator_seconds_a10040 = args[:milli_accelerator_seconds_a10040] if args.key?(:milli_accelerator_seconds_a10040)
|
|
11810
|
+
@milli_accelerator_seconds_a10080 = args[:milli_accelerator_seconds_a10080] if args.key?(:milli_accelerator_seconds_a10080)
|
|
11811
|
+
@milli_accelerator_seconds_l4 = args[:milli_accelerator_seconds_l4] if args.key?(:milli_accelerator_seconds_l4)
|
|
11788
11812
|
@milli_dcu_seconds = args[:milli_dcu_seconds] if args.key?(:milli_dcu_seconds)
|
|
11789
11813
|
@shuffle_storage_gb_seconds = args[:shuffle_storage_gb_seconds] if args.key?(:shuffle_storage_gb_seconds)
|
|
11790
11814
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
@@ -11796,17 +11820,40 @@ module Google
|
|
|
11796
11820
|
class UsageSnapshot
|
|
11797
11821
|
include Google::Apis::Core::Hashable
|
|
11798
11822
|
|
|
11799
|
-
# Optional. Accelerator type being used, if any
|
|
11823
|
+
# Optional. Accelerator type being used, if any Deprecated: This field is only
|
|
11824
|
+
# used in runtime versions below 3.0.
|
|
11800
11825
|
# Corresponds to the JSON property `acceleratorType`
|
|
11801
11826
|
# @return [String]
|
|
11802
11827
|
attr_accessor :accelerator_type
|
|
11803
11828
|
|
|
11804
11829
|
# Optional. Milli (one-thousandth) accelerator. (see Dataproc Serverless pricing
|
|
11805
|
-
# (https://cloud.google.com/dataproc-serverless/pricing))
|
|
11830
|
+
# (https://cloud.google.com/dataproc-serverless/pricing)) Deprecated: This field
|
|
11831
|
+
# is only used in runtime versions below 3.0.
|
|
11806
11832
|
# Corresponds to the JSON property `milliAccelerator`
|
|
11807
11833
|
# @return [Fixnum]
|
|
11808
11834
|
attr_accessor :milli_accelerator
|
|
11809
11835
|
|
|
11836
|
+
# Optional. Milli (one-thousandth) accelerator for A100-40 accelerators. (see
|
|
11837
|
+
# Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/
|
|
11838
|
+
# pricing))
|
|
11839
|
+
# Corresponds to the JSON property `milliAcceleratorA10040`
|
|
11840
|
+
# @return [Fixnum]
|
|
11841
|
+
attr_accessor :milli_accelerator_a10040
|
|
11842
|
+
|
|
11843
|
+
# Optional. Milli (one-thousandth) accelerator for A100-80 accelerators. (see
|
|
11844
|
+
# Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/
|
|
11845
|
+
# pricing))
|
|
11846
|
+
# Corresponds to the JSON property `milliAcceleratorA10080`
|
|
11847
|
+
# @return [Fixnum]
|
|
11848
|
+
attr_accessor :milli_accelerator_a10080
|
|
11849
|
+
|
|
11850
|
+
# Optional. Milli (one-thousandth) accelerator for L4 accelerators. (see
|
|
11851
|
+
# Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/
|
|
11852
|
+
# pricing))
|
|
11853
|
+
# Corresponds to the JSON property `milliAcceleratorL4`
|
|
11854
|
+
# @return [Fixnum]
|
|
11855
|
+
attr_accessor :milli_accelerator_l4
|
|
11856
|
+
|
|
11810
11857
|
# Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) (see Dataproc
|
|
11811
11858
|
# Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
|
|
11812
11859
|
# Corresponds to the JSON property `milliDcu`
|
|
@@ -11846,6 +11893,9 @@ module Google
|
|
|
11846
11893
|
def update!(**args)
|
|
11847
11894
|
@accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
|
|
11848
11895
|
@milli_accelerator = args[:milli_accelerator] if args.key?(:milli_accelerator)
|
|
11896
|
+
@milli_accelerator_a10040 = args[:milli_accelerator_a10040] if args.key?(:milli_accelerator_a10040)
|
|
11897
|
+
@milli_accelerator_a10080 = args[:milli_accelerator_a10080] if args.key?(:milli_accelerator_a10080)
|
|
11898
|
+
@milli_accelerator_l4 = args[:milli_accelerator_l4] if args.key?(:milli_accelerator_l4)
|
|
11849
11899
|
@milli_dcu = args[:milli_dcu] if args.key?(:milli_dcu)
|
|
11850
11900
|
@milli_dcu_premium = args[:milli_dcu_premium] if args.key?(:milli_dcu_premium)
|
|
11851
11901
|
@shuffle_storage_gb = args[:shuffle_storage_gb] if args.key?(:shuffle_storage_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.94.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 = "20260509"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -4660,6 +4660,9 @@ module Google
|
|
|
4660
4660
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4661
4661
|
property :accelerator_type, as: 'acceleratorType'
|
|
4662
4662
|
property :milli_accelerator_seconds, :numeric_string => true, as: 'milliAcceleratorSeconds'
|
|
4663
|
+
property :milli_accelerator_seconds_a10040, :numeric_string => true, as: 'milliAcceleratorSecondsA10040'
|
|
4664
|
+
property :milli_accelerator_seconds_a10080, :numeric_string => true, as: 'milliAcceleratorSecondsA10080'
|
|
4665
|
+
property :milli_accelerator_seconds_l4, :numeric_string => true, as: 'milliAcceleratorSecondsL4'
|
|
4663
4666
|
property :milli_dcu_seconds, :numeric_string => true, as: 'milliDcuSeconds'
|
|
4664
4667
|
property :shuffle_storage_gb_seconds, :numeric_string => true, as: 'shuffleStorageGbSeconds'
|
|
4665
4668
|
property :update_time, as: 'updateTime'
|
|
@@ -4671,6 +4674,9 @@ module Google
|
|
|
4671
4674
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4672
4675
|
property :accelerator_type, as: 'acceleratorType'
|
|
4673
4676
|
property :milli_accelerator, :numeric_string => true, as: 'milliAccelerator'
|
|
4677
|
+
property :milli_accelerator_a10040, :numeric_string => true, as: 'milliAcceleratorA10040'
|
|
4678
|
+
property :milli_accelerator_a10080, :numeric_string => true, as: 'milliAcceleratorA10080'
|
|
4679
|
+
property :milli_accelerator_l4, :numeric_string => true, as: 'milliAcceleratorL4'
|
|
4674
4680
|
property :milli_dcu, :numeric_string => true, as: 'milliDcu'
|
|
4675
4681
|
property :milli_dcu_premium, :numeric_string => true, as: 'milliDcuPremium'
|
|
4676
4682
|
property :shuffle_storage_gb, :numeric_string => true, as: 'shuffleStorageGb'
|
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.94.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.94.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:
|