google-apis-dataproc_v1 0.79.0 → 0.81.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: 29044c2835289d0ea81350a0947c65ba25c9bd165b8c7977fbb31b798b7c4d8c
|
4
|
+
data.tar.gz: f6e565e2672b95851f93b91dece1b3ce6417c3d120deb68e7a059f6dc5c2df49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb38b0f099bd4f8ff5a2fb6fdabd0182dbb201566416392a5f842da5ae2aecb3e167a8fff04e0390e70b3f47bd05553f5075c1c87c09b8071fcaf34474f88767
|
7
|
+
data.tar.gz: ef76f85b903b4b788ebda935c0f0d24b035d3d82f0b6731e8b1ae7d876439ab248a83c24748c7eded3b773153e495b8979b2147dd0cf55443a8b624aa00f6651
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataproc_v1
|
2
2
|
|
3
|
+
### v0.81.0 (2025-07-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250624
|
6
|
+
|
7
|
+
### v0.80.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250604
|
10
|
+
|
3
11
|
### v0.79.0 (2025-06-01)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250521
|
@@ -1370,6 +1370,11 @@ module Google
|
|
1370
1370
|
# @return [Array<Google::Apis::DataprocV1::AuxiliaryNodeGroup>]
|
1371
1371
|
attr_accessor :auxiliary_node_groups
|
1372
1372
|
|
1373
|
+
# Optional. The tier of the cluster.
|
1374
|
+
# Corresponds to the JSON property `clusterTier`
|
1375
|
+
# @return [String]
|
1376
|
+
attr_accessor :cluster_tier
|
1377
|
+
|
1373
1378
|
# Optional. The type of the cluster.
|
1374
1379
|
# Corresponds to the JSON property `clusterType`
|
1375
1380
|
# @return [String]
|
@@ -1485,6 +1490,7 @@ module Google
|
|
1485
1490
|
def update!(**args)
|
1486
1491
|
@autoscaling_config = args[:autoscaling_config] if args.key?(:autoscaling_config)
|
1487
1492
|
@auxiliary_node_groups = args[:auxiliary_node_groups] if args.key?(:auxiliary_node_groups)
|
1493
|
+
@cluster_tier = args[:cluster_tier] if args.key?(:cluster_tier)
|
1488
1494
|
@cluster_type = args[:cluster_type] if args.key?(:cluster_type)
|
1489
1495
|
@config_bucket = args[:config_bucket] if args.key?(:config_bucket)
|
1490
1496
|
@dataproc_metric_config = args[:dataproc_metric_config] if args.key?(:dataproc_metric_config)
|
@@ -4805,6 +4811,22 @@ module Google
|
|
4805
4811
|
# @return [String]
|
4806
4812
|
attr_accessor :auto_delete_ttl
|
4807
4813
|
|
4814
|
+
# Optional. The time when cluster will be auto-stopped (see JSON representation
|
4815
|
+
# of Timestamp (https://developers.google.com/protocol-buffers/docs/proto3#json))
|
4816
|
+
# .
|
4817
|
+
# Corresponds to the JSON property `autoStopTime`
|
4818
|
+
# @return [String]
|
4819
|
+
attr_accessor :auto_stop_time
|
4820
|
+
|
4821
|
+
# Optional. The lifetime duration of the cluster. The cluster will be auto-
|
4822
|
+
# stopped at the end of this period, calculated from the time of submission of
|
4823
|
+
# the create or update cluster request. Minimum value is 10 minutes; maximum
|
4824
|
+
# value is 14 days (see JSON representation of Duration (https://developers.
|
4825
|
+
# google.com/protocol-buffers/docs/proto3#json)).
|
4826
|
+
# Corresponds to the JSON property `autoStopTtl`
|
4827
|
+
# @return [String]
|
4828
|
+
attr_accessor :auto_stop_ttl
|
4829
|
+
|
4808
4830
|
# Optional. The duration to keep the cluster alive while idling (when no jobs
|
4809
4831
|
# are running). Passing this threshold will cause the cluster to be deleted.
|
4810
4832
|
# Minimum value is 5 minutes; maximum value is 14 days (see JSON representation
|
@@ -4820,6 +4842,14 @@ module Google
|
|
4820
4842
|
# @return [String]
|
4821
4843
|
attr_accessor :idle_start_time
|
4822
4844
|
|
4845
|
+
# Optional. The duration to keep the cluster started while idling (when no jobs
|
4846
|
+
# are running). Passing this threshold will cause the cluster to be stopped.
|
4847
|
+
# Minimum value is 5 minutes; maximum value is 14 days (see JSON representation
|
4848
|
+
# of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).
|
4849
|
+
# Corresponds to the JSON property `idleStopTtl`
|
4850
|
+
# @return [String]
|
4851
|
+
attr_accessor :idle_stop_ttl
|
4852
|
+
|
4823
4853
|
def initialize(**args)
|
4824
4854
|
update!(**args)
|
4825
4855
|
end
|
@@ -4828,8 +4858,11 @@ module Google
|
|
4828
4858
|
def update!(**args)
|
4829
4859
|
@auto_delete_time = args[:auto_delete_time] if args.key?(:auto_delete_time)
|
4830
4860
|
@auto_delete_ttl = args[:auto_delete_ttl] if args.key?(:auto_delete_ttl)
|
4861
|
+
@auto_stop_time = args[:auto_stop_time] if args.key?(:auto_stop_time)
|
4862
|
+
@auto_stop_ttl = args[:auto_stop_ttl] if args.key?(:auto_stop_ttl)
|
4831
4863
|
@idle_delete_ttl = args[:idle_delete_ttl] if args.key?(:idle_delete_ttl)
|
4832
4864
|
@idle_start_time = args[:idle_start_time] if args.key?(:idle_start_time)
|
4865
|
+
@idle_stop_ttl = args[:idle_stop_ttl] if args.key?(:idle_stop_ttl)
|
4833
4866
|
end
|
4834
4867
|
end
|
4835
4868
|
|
@@ -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.81.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 = "20250624"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1972,6 +1972,7 @@ module Google
|
|
1972
1972
|
|
1973
1973
|
collection :auxiliary_node_groups, as: 'auxiliaryNodeGroups', class: Google::Apis::DataprocV1::AuxiliaryNodeGroup, decorator: Google::Apis::DataprocV1::AuxiliaryNodeGroup::Representation
|
1974
1974
|
|
1975
|
+
property :cluster_tier, as: 'clusterTier'
|
1975
1976
|
property :cluster_type, as: 'clusterType'
|
1976
1977
|
property :config_bucket, as: 'configBucket'
|
1977
1978
|
property :dataproc_metric_config, as: 'dataprocMetricConfig', class: Google::Apis::DataprocV1::DataprocMetricConfig, decorator: Google::Apis::DataprocV1::DataprocMetricConfig::Representation
|
@@ -2791,8 +2792,11 @@ module Google
|
|
2791
2792
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2792
2793
|
property :auto_delete_time, as: 'autoDeleteTime'
|
2793
2794
|
property :auto_delete_ttl, as: 'autoDeleteTtl'
|
2795
|
+
property :auto_stop_time, as: 'autoStopTime'
|
2796
|
+
property :auto_stop_ttl, as: 'autoStopTtl'
|
2794
2797
|
property :idle_delete_ttl, as: 'idleDeleteTtl'
|
2795
2798
|
property :idle_start_time, as: 'idleStartTime'
|
2799
|
+
property :idle_stop_ttl, as: 'idleStopTtl'
|
2796
2800
|
end
|
2797
2801
|
end
|
2798
2802
|
|
@@ -2703,6 +2703,8 @@ module Google
|
|
2703
2703
|
# Required. The fully qualified name of the session to retrieve in the format "
|
2704
2704
|
# projects/PROJECT_ID/locations/DATAPROC_REGION/sessions/SESSION_ID/
|
2705
2705
|
# sparkApplications/APPLICATION_ID"
|
2706
|
+
# @param [Array<Fixnum>, Fixnum] job_ids
|
2707
|
+
# Optional. List of Job IDs to filter by if provided.
|
2706
2708
|
# @param [String] parent
|
2707
2709
|
# Required. Parent (Session) resource reference.
|
2708
2710
|
# @param [String] fields
|
@@ -2722,11 +2724,12 @@ module Google
|
|
2722
2724
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2723
2725
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2724
2726
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2725
|
-
def summarize_project_location_session_spark_application_jobs(name, parent: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2727
|
+
def summarize_project_location_session_spark_application_jobs(name, job_ids: nil, parent: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2726
2728
|
command = make_simple_command(:get, 'v1/{+name}:summarizeJobs', options)
|
2727
2729
|
command.response_representation = Google::Apis::DataprocV1::SummarizeSessionSparkApplicationJobsResponse::Representation
|
2728
2730
|
command.response_class = Google::Apis::DataprocV1::SummarizeSessionSparkApplicationJobsResponse
|
2729
2731
|
command.params['name'] = name unless name.nil?
|
2732
|
+
command.query['jobIds'] = job_ids unless job_ids.nil?
|
2730
2733
|
command.query['parent'] = parent unless parent.nil?
|
2731
2734
|
command.query['fields'] = fields unless fields.nil?
|
2732
2735
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -2781,6 +2784,8 @@ module Google
|
|
2781
2784
|
# sparkApplications/APPLICATION_ID"
|
2782
2785
|
# @param [String] parent
|
2783
2786
|
# Required. Parent (Session) resource reference.
|
2787
|
+
# @param [Array<Fixnum>, Fixnum] stage_ids
|
2788
|
+
# Optional. List of Stage IDs to filter by if provided.
|
2784
2789
|
# @param [String] fields
|
2785
2790
|
# Selector specifying which fields to include in a partial response.
|
2786
2791
|
# @param [String] quota_user
|
@@ -2798,12 +2803,13 @@ module Google
|
|
2798
2803
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2799
2804
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2800
2805
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2801
|
-
def summarize_project_location_session_spark_application_stages(name, parent: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2806
|
+
def summarize_project_location_session_spark_application_stages(name, parent: nil, stage_ids: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2802
2807
|
command = make_simple_command(:get, 'v1/{+name}:summarizeStages', options)
|
2803
2808
|
command.response_representation = Google::Apis::DataprocV1::SummarizeSessionSparkApplicationStagesResponse::Representation
|
2804
2809
|
command.response_class = Google::Apis::DataprocV1::SummarizeSessionSparkApplicationStagesResponse
|
2805
2810
|
command.params['name'] = name unless name.nil?
|
2806
2811
|
command.query['parent'] = parent unless parent.nil?
|
2812
|
+
command.query['stageIds'] = stage_ids unless stage_ids.nil?
|
2807
2813
|
command.query['fields'] = fields unless fields.nil?
|
2808
2814
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2809
2815
|
execute_or_queue_command(command, &block)
|
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.81.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.81.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:
|