google-apis-dataproc_v1 0.28.0 → 0.31.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c7e8469b0f2b23825ade2e148e6a8160804ffbe8ae9a5b06416640e4ad1f477
4
- data.tar.gz: 3200537811ee763bb5e63d5ca1cd2b7cdea88ad4fd31f7f2fce4542104253ae9
3
+ metadata.gz: 721c0aaec96a594937ac26e58982bdc497a8419e39bf2403ce3930b56d34305c
4
+ data.tar.gz: 624b1beeecf28480a28d4f4466aa93f767611f0102be151303d592babb3be456
5
5
  SHA512:
6
- metadata.gz: 8a023abe7c2b78c787ccd167e796509a5a57f0e96652b017d530eb0234832cb188edb23a7c209fd723ceeefeb4b9571fffc7dce201133edd582bd72570374a83
7
- data.tar.gz: 232bde112092e632e63d6a36644a41ea227e1e98ae2b1b5f4ba4070917b6fc8f880efc22393cfa2fd044d59bd06b0191260ee54b513501d89e8387bac7c4e984
6
+ metadata.gz: 55495edeb43104ebbacec93976c3f5897070651e7de672ad2f48e1fb207825ef0d78e5ae517553a5909c51b0027bb9876d3cdc6bfe706c7869b3223300ea023a
7
+ data.tar.gz: 3de8f86a06044c32078d0d9f7423891ae8695e93d04ac47817617e5d9925e85a0f2eed1b2314b75ae5057cc8b8a746e3bd9d42dc4cf8e40416485fbe5831a35a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-dataproc_v1
2
2
 
3
+ ### v0.31.0 (2022-07-19)
4
+
5
+ * Regenerated from discovery document revision 20220718
6
+
7
+ ### v0.30.0 (2022-07-15)
8
+
9
+ * Regenerated from discovery document revision 20220708
10
+ * Regenerated using generator version 0.9.0
11
+
12
+ ### v0.29.0 (2022-07-01)
13
+
14
+ * Regenerated from discovery document revision 20220628
15
+ * Regenerated using generator version 0.8.0
16
+
3
17
  ### v0.28.0 (2022-06-17)
4
18
 
5
19
  * Regenerated using generator version 0.6.0
@@ -818,6 +818,11 @@ module Google
818
818
  class ClusterOperationMetadata
819
819
  include Google::Apis::Core::Hashable
820
820
 
821
+ # Output only. Child operation ids
822
+ # Corresponds to the JSON property `childOperationIds`
823
+ # @return [Array<String>]
824
+ attr_accessor :child_operation_ids
825
+
821
826
  # Output only. Name of the cluster for the operation.
822
827
  # Corresponds to the JSON property `clusterName`
823
828
  # @return [String]
@@ -864,6 +869,7 @@ module Google
864
869
 
865
870
  # Update properties of this object
866
871
  def update!(**args)
872
+ @child_operation_ids = args[:child_operation_ids] if args.key?(:child_operation_ids)
867
873
  @cluster_name = args[:cluster_name] if args.key?(:cluster_name)
868
874
  @cluster_uuid = args[:cluster_uuid] if args.key?(:cluster_uuid)
869
875
  @description = args[:description] if args.key?(:description)
@@ -1004,7 +1010,7 @@ module Google
1004
1010
  class DataprocMetricConfig
1005
1011
  include Google::Apis::Core::Hashable
1006
1012
 
1007
- # Required. Metrics to enable.
1013
+ # Required. Metrics sources to enable.
1008
1014
  # Corresponds to the JSON property `metrics`
1009
1015
  # @return [Array<Google::Apis::DataprocV1::Metric>]
1010
1016
  attr_accessor :metrics
@@ -1077,11 +1083,12 @@ module Google
1077
1083
  # @return [String]
1078
1084
  attr_accessor :local_ssd_interface
1079
1085
 
1080
- # Optional. Number of attached SSDs, from 0 to 4 (default is 0). If SSDs are not
1086
+ # Optional. Number of attached SSDs, from 0 to 8 (default is 0). If SSDs are not
1081
1087
  # attached, the boot disk is used to store runtime logs and HDFS (https://hadoop.
1082
1088
  # apache.org/docs/r1.2.1/hdfs_user_guide.html) data. If one or more SSDs are
1083
1089
  # attached, this runtime bulk data is spread across them, and the boot disk
1084
- # contains only basic config and installed binaries.
1090
+ # contains only basic config and installed binaries.Note: Local SSD options may
1091
+ # vary by machine type and number of vCPUs selected.
1085
1092
  # Corresponds to the JSON property `numLocalSsds`
1086
1093
  # @return [Fixnum]
1087
1094
  attr_accessor :num_local_ssds
@@ -1515,9 +1522,9 @@ module Google
1515
1522
  attr_accessor :accelerators
1516
1523
 
1517
1524
  # Optional. The Customer Managed Encryption Key (CMEK) (https://cloud.google.com/
1518
- # compute/docs/disks/customer-managed-encryption) used to encrypt the boot disk
1525
+ # kubernetes-engine/docs/how-to/using-cmek) used to encrypt the boot disk
1519
1526
  # attached to each node in the node pool. Specify the key using the following
1520
- # format: projects/KEY_PROJECT_ID /locations/LOCATION/keyRings/RING_NAME/
1527
+ # format: projects/KEY_PROJECT_ID/locations/LOCATION /keyRings/RING_NAME/
1521
1528
  # cryptoKeys/KEY_NAME.
1522
1529
  # Corresponds to the JSON property `bootDiskKmsKey`
1523
1530
  # @return [String]
@@ -2950,18 +2957,31 @@ module Google
2950
2957
  end
2951
2958
  end
2952
2959
 
2953
- # The metric source to enable, with any optional metrics, to override Dataproc
2954
- # default metrics.
2960
+ # A Dataproc OSS metric.
2955
2961
  class Metric
2956
2962
  include Google::Apis::Core::Hashable
2957
2963
 
2958
- # Optional. Optional Metrics to override the Dataproc default metrics configured
2959
- # for the metric source.
2964
+ # Optional. Specify one or more available OSS metrics (https://cloud.google.com/
2965
+ # dataproc/docs/guides/monitoring#available_oss_metrics) to collect for the
2966
+ # metric course (for the SPARK metric source, any Spark metric (https://spark.
2967
+ # apache.org/docs/latest/monitoring.html#metrics) can be specified).Provide
2968
+ # metrics in the following format: METRIC_SOURCE: INSTANCE:GROUP:METRIC Use
2969
+ # camelcase as appropriate.Examples: yarn:ResourceManager:QueueMetrics:
2970
+ # AppsCompleted spark:driver:DAGScheduler:job.allJobs sparkHistoryServer:JVM:
2971
+ # Memory:NonHeapMemoryUsage.committed hiveserver2:JVM:Memory:NonHeapMemoryUsage.
2972
+ # used Notes: Only the specified overridden metrics will be collected for the
2973
+ # metric source. For example, if one or more spark:executive metrics are listed
2974
+ # as metric overrides, other SPARK metrics will not be collected. The collection
2975
+ # of the default metrics for other OSS metric sources is unaffected. For example,
2976
+ # if both SPARK andd YARN metric sources are enabled, and overrides are
2977
+ # provided for Spark metrics only, all default YARN metrics will be collected.
2960
2978
  # Corresponds to the JSON property `metricOverrides`
2961
2979
  # @return [Array<String>]
2962
2980
  attr_accessor :metric_overrides
2963
2981
 
2964
- # Required. MetricSource to enable.
2982
+ # Required. Default metrics are collected unless metricOverrides are specified
2983
+ # for the metric source (see Available OSS metrics (https://cloud.google.com/
2984
+ # dataproc/docs/guides/monitoring#available_oss_metrics) for more information).
2965
2985
  # Corresponds to the JSON property `metricSource`
2966
2986
  # @return [String]
2967
2987
  attr_accessor :metric_source
@@ -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.28.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.6.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220526"
25
+ REVISION = "20220718"
26
26
  end
27
27
  end
28
28
  end
@@ -911,6 +911,7 @@ module Google
911
911
  class ClusterOperationMetadata
912
912
  # @private
913
913
  class Representation < Google::Apis::Core::JsonRepresentation
914
+ collection :child_operation_ids, as: 'childOperationIds'
914
915
  property :cluster_name, as: 'clusterName'
915
916
  property :cluster_uuid, as: 'clusterUuid'
916
917
  property :description, as: 'description'
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.28.0
4
+ version: 0.31.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: 2022-06-20 00:00:00.000000000 Z
11
+ date: 2022-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.6'
19
+ version: '0.7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.6'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.31.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: []