google-apis-dataproc_v1 0.80.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
@@ -4811,6 +4811,22 @@ module Google
|
|
4811
4811
|
# @return [String]
|
4812
4812
|
attr_accessor :auto_delete_ttl
|
4813
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
|
+
|
4814
4830
|
# Optional. The duration to keep the cluster alive while idling (when no jobs
|
4815
4831
|
# are running). Passing this threshold will cause the cluster to be deleted.
|
4816
4832
|
# Minimum value is 5 minutes; maximum value is 14 days (see JSON representation
|
@@ -4826,6 +4842,14 @@ module Google
|
|
4826
4842
|
# @return [String]
|
4827
4843
|
attr_accessor :idle_start_time
|
4828
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
|
+
|
4829
4853
|
def initialize(**args)
|
4830
4854
|
update!(**args)
|
4831
4855
|
end
|
@@ -4834,8 +4858,11 @@ module Google
|
|
4834
4858
|
def update!(**args)
|
4835
4859
|
@auto_delete_time = args[:auto_delete_time] if args.key?(:auto_delete_time)
|
4836
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)
|
4837
4863
|
@idle_delete_ttl = args[:idle_delete_ttl] if args.key?(:idle_delete_ttl)
|
4838
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)
|
4839
4866
|
end
|
4840
4867
|
end
|
4841
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
|
@@ -2792,8 +2792,11 @@ module Google
|
|
2792
2792
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2793
2793
|
property :auto_delete_time, as: 'autoDeleteTime'
|
2794
2794
|
property :auto_delete_ttl, as: 'autoDeleteTtl'
|
2795
|
+
property :auto_stop_time, as: 'autoStopTime'
|
2796
|
+
property :auto_stop_ttl, as: 'autoStopTtl'
|
2795
2797
|
property :idle_delete_ttl, as: 'idleDeleteTtl'
|
2796
2798
|
property :idle_start_time, as: 'idleStartTime'
|
2799
|
+
property :idle_stop_ttl, as: 'idleStopTtl'
|
2797
2800
|
end
|
2798
2801
|
end
|
2799
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:
|