google-apis-dataproc_v1 0.80.0 → 0.82.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: 2b209dacfceff69e94ae0bfdcfc786ce89334271a1d4da0f9c038e898d633ea5
|
4
|
+
data.tar.gz: 6b65e7d2e3f600259144ac7a9e0e641a62d3d5572a5ca8377afe91ccabdfdb3b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3db1b5f39988270f4db8fa5e6c93a6959f680adbf198886c97dea9ffb033f6b1bbb5685667d9f20f7f818fcf5a97e0cc4a2a5a7485cd3d0b67706837e38e284a
|
7
|
+
data.tar.gz: d0dd5da90675f385949942c1185b06988474076f3445a7dd25a85db350aa79e225d6e61fd460782510e2815519d197be7f117d51a9a696d54b23e7b50da449c6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataproc_v1
|
2
2
|
|
3
|
+
### v0.82.0 (2025-08-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250813
|
6
|
+
|
7
|
+
### v0.81.0 (2025-07-06)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250624
|
10
|
+
|
3
11
|
### v0.80.0 (2025-06-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250604
|
@@ -382,6 +382,12 @@ module Google
|
|
382
382
|
# @return [String]
|
383
383
|
attr_accessor :request_id
|
384
384
|
|
385
|
+
# Optional. The requestor ID is used to identify if the request comes from a GCA
|
386
|
+
# investigation or the old Ask Gemini Experience.
|
387
|
+
# Corresponds to the JSON property `requestorId`
|
388
|
+
# @return [String]
|
389
|
+
attr_accessor :requestor_id
|
390
|
+
|
385
391
|
def initialize(**args)
|
386
392
|
update!(**args)
|
387
393
|
end
|
@@ -389,6 +395,7 @@ module Google
|
|
389
395
|
# Update properties of this object
|
390
396
|
def update!(**args)
|
391
397
|
@request_id = args[:request_id] if args.key?(:request_id)
|
398
|
+
@requestor_id = args[:requestor_id] if args.key?(:requestor_id)
|
392
399
|
end
|
393
400
|
end
|
394
401
|
|
@@ -1370,7 +1377,7 @@ module Google
|
|
1370
1377
|
# @return [Array<Google::Apis::DataprocV1::AuxiliaryNodeGroup>]
|
1371
1378
|
attr_accessor :auxiliary_node_groups
|
1372
1379
|
|
1373
|
-
# Optional. The tier
|
1380
|
+
# Optional. The cluster tier.
|
1374
1381
|
# Corresponds to the JSON property `clusterTier`
|
1375
1382
|
# @return [String]
|
1376
1383
|
attr_accessor :cluster_tier
|
@@ -4811,6 +4818,22 @@ module Google
|
|
4811
4818
|
# @return [String]
|
4812
4819
|
attr_accessor :auto_delete_ttl
|
4813
4820
|
|
4821
|
+
# Optional. The time when cluster will be auto-stopped (see JSON representation
|
4822
|
+
# of Timestamp (https://developers.google.com/protocol-buffers/docs/proto3#json))
|
4823
|
+
# .
|
4824
|
+
# Corresponds to the JSON property `autoStopTime`
|
4825
|
+
# @return [String]
|
4826
|
+
attr_accessor :auto_stop_time
|
4827
|
+
|
4828
|
+
# Optional. The lifetime duration of the cluster. The cluster will be auto-
|
4829
|
+
# stopped at the end of this period, calculated from the time of submission of
|
4830
|
+
# the create or update cluster request. Minimum value is 10 minutes; maximum
|
4831
|
+
# value is 14 days (see JSON representation of Duration (https://developers.
|
4832
|
+
# google.com/protocol-buffers/docs/proto3#json)).
|
4833
|
+
# Corresponds to the JSON property `autoStopTtl`
|
4834
|
+
# @return [String]
|
4835
|
+
attr_accessor :auto_stop_ttl
|
4836
|
+
|
4814
4837
|
# Optional. The duration to keep the cluster alive while idling (when no jobs
|
4815
4838
|
# are running). Passing this threshold will cause the cluster to be deleted.
|
4816
4839
|
# Minimum value is 5 minutes; maximum value is 14 days (see JSON representation
|
@@ -4826,6 +4849,14 @@ module Google
|
|
4826
4849
|
# @return [String]
|
4827
4850
|
attr_accessor :idle_start_time
|
4828
4851
|
|
4852
|
+
# Optional. The duration to keep the cluster started while idling (when no jobs
|
4853
|
+
# are running). Passing this threshold will cause the cluster to be stopped.
|
4854
|
+
# Minimum value is 5 minutes; maximum value is 14 days (see JSON representation
|
4855
|
+
# of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).
|
4856
|
+
# Corresponds to the JSON property `idleStopTtl`
|
4857
|
+
# @return [String]
|
4858
|
+
attr_accessor :idle_stop_ttl
|
4859
|
+
|
4829
4860
|
def initialize(**args)
|
4830
4861
|
update!(**args)
|
4831
4862
|
end
|
@@ -4834,8 +4865,11 @@ module Google
|
|
4834
4865
|
def update!(**args)
|
4835
4866
|
@auto_delete_time = args[:auto_delete_time] if args.key?(:auto_delete_time)
|
4836
4867
|
@auto_delete_ttl = args[:auto_delete_ttl] if args.key?(:auto_delete_ttl)
|
4868
|
+
@auto_stop_time = args[:auto_stop_time] if args.key?(:auto_stop_time)
|
4869
|
+
@auto_stop_ttl = args[:auto_stop_ttl] if args.key?(:auto_stop_ttl)
|
4837
4870
|
@idle_delete_ttl = args[:idle_delete_ttl] if args.key?(:idle_delete_ttl)
|
4838
4871
|
@idle_start_time = args[:idle_start_time] if args.key?(:idle_start_time)
|
4872
|
+
@idle_stop_ttl = args[:idle_stop_ttl] if args.key?(:idle_stop_ttl)
|
4839
4873
|
end
|
4840
4874
|
end
|
4841
4875
|
|
@@ -7847,7 +7881,7 @@ module Google
|
|
7847
7881
|
# @return [Hash<String,String>]
|
7848
7882
|
attr_accessor :labels
|
7849
7883
|
|
7850
|
-
# Required. The resource name of the session template.
|
7884
|
+
# Required. Identifier. The resource name of the session template.
|
7851
7885
|
# Corresponds to the JSON property `name`
|
7852
7886
|
# @return [String]
|
7853
7887
|
attr_accessor :name
|
@@ -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.82.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 = "20250813"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1728,6 +1728,7 @@ module Google
|
|
1728
1728
|
# @private
|
1729
1729
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1730
1730
|
property :request_id, as: 'requestId'
|
1731
|
+
property :requestor_id, as: 'requestorId'
|
1731
1732
|
end
|
1732
1733
|
end
|
1733
1734
|
|
@@ -2792,8 +2793,11 @@ module Google
|
|
2792
2793
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2793
2794
|
property :auto_delete_time, as: 'autoDeleteTime'
|
2794
2795
|
property :auto_delete_ttl, as: 'autoDeleteTtl'
|
2796
|
+
property :auto_stop_time, as: 'autoStopTime'
|
2797
|
+
property :auto_stop_ttl, as: 'autoStopTtl'
|
2795
2798
|
property :idle_delete_ttl, as: 'idleDeleteTtl'
|
2796
2799
|
property :idle_start_time, as: 'idleStartTime'
|
2800
|
+
property :idle_stop_ttl, as: 'idleStopTtl'
|
2797
2801
|
end
|
2798
2802
|
end
|
2799
2803
|
|
@@ -1721,7 +1721,7 @@ module Google
|
|
1721
1721
|
|
1722
1722
|
# Updates the session template synchronously.
|
1723
1723
|
# @param [String] name
|
1724
|
-
# Required. The resource name of the session template.
|
1724
|
+
# Required. Identifier. The resource name of the session template.
|
1725
1725
|
# @param [Google::Apis::DataprocV1::SessionTemplate] session_template_object
|
1726
1726
|
# @param [String] fields
|
1727
1727
|
# Selector specifying which fields to include in a partial response.
|
@@ -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.82.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.82.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:
|