google-apis-dataproc_v1 0.78.0 → 0.79.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: 8dad8a92d4c8be0d73813794dbc48bfb3fd71636904dc7e4f1d607843ba82317
|
4
|
+
data.tar.gz: eb26f038e0353672392c3ea4c3e666dbc9b684619a3fb66e8f2f70da32935d18
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c367d3d0ad06c2bce9717ea6647b5ad66df0ba1eb5ab9ecc12b1c4ba7f81703ca6f62c7bf481bc03ed0aef7bf2c05516c61e8ba6283e368b86041c39bdaffaee
|
7
|
+
data.tar.gz: 8892b353a758fd58dbda7cd5dc7d5456453b1c4e900d26cc2130caa14e660438e526a56bc4fa5832e637838398add32039b67ca76f09ae376b62e5d6b8bd3ab1
|
data/CHANGELOG.md
CHANGED
@@ -4805,22 +4805,6 @@ module Google
|
|
4805
4805
|
# @return [String]
|
4806
4806
|
attr_accessor :auto_delete_ttl
|
4807
4807
|
|
4808
|
-
# Optional. The time when cluster will be auto-stopped (see JSON representation
|
4809
|
-
# of Timestamp (https://developers.google.com/protocol-buffers/docs/proto3#json))
|
4810
|
-
# .
|
4811
|
-
# Corresponds to the JSON property `autoStopTime`
|
4812
|
-
# @return [String]
|
4813
|
-
attr_accessor :auto_stop_time
|
4814
|
-
|
4815
|
-
# Optional. The lifetime duration of the cluster. The cluster will be auto-
|
4816
|
-
# stopped at the end of this period, calculated from the time of submission of
|
4817
|
-
# the create or update cluster request. Minimum value is 10 minutes; maximum
|
4818
|
-
# value is 14 days (see JSON representation of Duration (https://developers.
|
4819
|
-
# google.com/protocol-buffers/docs/proto3#json)).
|
4820
|
-
# Corresponds to the JSON property `autoStopTtl`
|
4821
|
-
# @return [String]
|
4822
|
-
attr_accessor :auto_stop_ttl
|
4823
|
-
|
4824
4808
|
# Optional. The duration to keep the cluster alive while idling (when no jobs
|
4825
4809
|
# are running). Passing this threshold will cause the cluster to be deleted.
|
4826
4810
|
# Minimum value is 5 minutes; maximum value is 14 days (see JSON representation
|
@@ -4836,14 +4820,6 @@ module Google
|
|
4836
4820
|
# @return [String]
|
4837
4821
|
attr_accessor :idle_start_time
|
4838
4822
|
|
4839
|
-
# Optional. The duration to keep the cluster started while idling (when no jobs
|
4840
|
-
# are running). Passing this threshold will cause the cluster to be stopped.
|
4841
|
-
# Minimum value is 5 minutes; maximum value is 14 days (see JSON representation
|
4842
|
-
# of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).
|
4843
|
-
# Corresponds to the JSON property `idleStopTtl`
|
4844
|
-
# @return [String]
|
4845
|
-
attr_accessor :idle_stop_ttl
|
4846
|
-
|
4847
4823
|
def initialize(**args)
|
4848
4824
|
update!(**args)
|
4849
4825
|
end
|
@@ -4852,11 +4828,8 @@ module Google
|
|
4852
4828
|
def update!(**args)
|
4853
4829
|
@auto_delete_time = args[:auto_delete_time] if args.key?(:auto_delete_time)
|
4854
4830
|
@auto_delete_ttl = args[:auto_delete_ttl] if args.key?(:auto_delete_ttl)
|
4855
|
-
@auto_stop_time = args[:auto_stop_time] if args.key?(:auto_stop_time)
|
4856
|
-
@auto_stop_ttl = args[:auto_stop_ttl] if args.key?(:auto_stop_ttl)
|
4857
4831
|
@idle_delete_ttl = args[:idle_delete_ttl] if args.key?(:idle_delete_ttl)
|
4858
4832
|
@idle_start_time = args[:idle_start_time] if args.key?(:idle_start_time)
|
4859
|
-
@idle_stop_ttl = args[:idle_stop_ttl] if args.key?(:idle_stop_ttl)
|
4860
4833
|
end
|
4861
4834
|
end
|
4862
4835
|
|
@@ -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.79.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 = "20250521"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2791,11 +2791,8 @@ module Google
|
|
2791
2791
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2792
2792
|
property :auto_delete_time, as: 'autoDeleteTime'
|
2793
2793
|
property :auto_delete_ttl, as: 'autoDeleteTtl'
|
2794
|
-
property :auto_stop_time, as: 'autoStopTime'
|
2795
|
-
property :auto_stop_ttl, as: 'autoStopTtl'
|
2796
2794
|
property :idle_delete_ttl, as: 'idleDeleteTtl'
|
2797
2795
|
property :idle_start_time, as: 'idleStartTime'
|
2798
|
-
property :idle_stop_ttl, as: 'idleStopTtl'
|
2799
2796
|
end
|
2800
2797
|
end
|
2801
2798
|
|
@@ -2393,6 +2393,8 @@ module Google
|
|
2393
2393
|
# Required. The fully qualified name of the session to retrieve in the format "
|
2394
2394
|
# projects/PROJECT_ID/locations/DATAPROC_REGION/sessions/SESSION_ID/
|
2395
2395
|
# sparkApplications/APPLICATION_ID"
|
2396
|
+
# @param [Array<Fixnum>, Fixnum] job_ids
|
2397
|
+
# Optional. List of Job IDs to filter by if provided.
|
2396
2398
|
# @param [String] job_status
|
2397
2399
|
# Optional. List only jobs in the specific state.
|
2398
2400
|
# @param [Fixnum] page_size
|
@@ -2422,11 +2424,12 @@ module Google
|
|
2422
2424
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2423
2425
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2424
2426
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2425
|
-
def search_project_location_session_spark_application_jobs(name, job_status: nil, page_size: nil, page_token: nil, parent: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2427
|
+
def search_project_location_session_spark_application_jobs(name, job_ids: nil, job_status: nil, page_size: nil, page_token: nil, parent: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2426
2428
|
command = make_simple_command(:get, 'v1/{+name}:searchJobs', options)
|
2427
2429
|
command.response_representation = Google::Apis::DataprocV1::SearchSessionSparkApplicationJobsResponse::Representation
|
2428
2430
|
command.response_class = Google::Apis::DataprocV1::SearchSessionSparkApplicationJobsResponse
|
2429
2431
|
command.params['name'] = name unless name.nil?
|
2432
|
+
command.query['jobIds'] = job_ids unless job_ids.nil?
|
2430
2433
|
command.query['jobStatus'] = job_status unless job_status.nil?
|
2431
2434
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2432
2435
|
command.query['pageToken'] = page_token unless page_token.nil?
|
@@ -2444,6 +2447,8 @@ module Google
|
|
2444
2447
|
# @param [Boolean] details
|
2445
2448
|
# Optional. Lists/ hides details of Spark plan nodes. True is set to list and
|
2446
2449
|
# false to hide.
|
2450
|
+
# @param [Array<String>, String] operation_ids
|
2451
|
+
# Optional. List of Spark Connect operation IDs to filter by if provided.
|
2447
2452
|
# @param [Fixnum] page_size
|
2448
2453
|
# Optional. Maximum number of queries to return in each response. The service
|
2449
2454
|
# may return fewer than this. The default page size is 10; the maximum page size
|
@@ -2473,12 +2478,13 @@ module Google
|
|
2473
2478
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2474
2479
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2475
2480
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2476
|
-
def search_project_location_session_spark_application_sql_queries(name, details: nil, page_size: nil, page_token: nil, parent: nil, plan_description: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2481
|
+
def search_project_location_session_spark_application_sql_queries(name, details: nil, operation_ids: nil, page_size: nil, page_token: nil, parent: nil, plan_description: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2477
2482
|
command = make_simple_command(:get, 'v1/{+name}:searchSqlQueries', options)
|
2478
2483
|
command.response_representation = Google::Apis::DataprocV1::SearchSessionSparkApplicationSqlQueriesResponse::Representation
|
2479
2484
|
command.response_class = Google::Apis::DataprocV1::SearchSessionSparkApplicationSqlQueriesResponse
|
2480
2485
|
command.params['name'] = name unless name.nil?
|
2481
2486
|
command.query['details'] = details unless details.nil?
|
2487
|
+
command.query['operationIds'] = operation_ids unless operation_ids.nil?
|
2482
2488
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2483
2489
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2484
2490
|
command.query['parent'] = parent unless parent.nil?
|
@@ -2615,6 +2621,8 @@ module Google
|
|
2615
2621
|
# subsequent page.
|
2616
2622
|
# @param [String] parent
|
2617
2623
|
# Required. Parent (Session) resource reference.
|
2624
|
+
# @param [Array<Fixnum>, Fixnum] stage_ids
|
2625
|
+
# Optional. List of Stage IDs to filter by if provided.
|
2618
2626
|
# @param [String] stage_status
|
2619
2627
|
# Optional. List only stages in the given state.
|
2620
2628
|
# @param [String] summary_metrics_mask
|
@@ -2639,7 +2647,7 @@ module Google
|
|
2639
2647
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2640
2648
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2641
2649
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2642
|
-
def search_project_location_session_spark_application_stages(name, page_size: nil, page_token: nil, parent: nil, stage_status: nil, summary_metrics_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2650
|
+
def search_project_location_session_spark_application_stages(name, page_size: nil, page_token: nil, parent: nil, stage_ids: nil, stage_status: nil, summary_metrics_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2643
2651
|
command = make_simple_command(:get, 'v1/{+name}:searchStages', options)
|
2644
2652
|
command.response_representation = Google::Apis::DataprocV1::SearchSessionSparkApplicationStagesResponse::Representation
|
2645
2653
|
command.response_class = Google::Apis::DataprocV1::SearchSessionSparkApplicationStagesResponse
|
@@ -2647,6 +2655,7 @@ module Google
|
|
2647
2655
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2648
2656
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2649
2657
|
command.query['parent'] = parent unless parent.nil?
|
2658
|
+
command.query['stageIds'] = stage_ids unless stage_ids.nil?
|
2650
2659
|
command.query['stageStatus'] = stage_status unless stage_status.nil?
|
2651
2660
|
command.query['summaryMetricsMask'] = summary_metrics_mask unless summary_metrics_mask.nil?
|
2652
2661
|
command.query['fields'] = fields unless fields.nil?
|
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.79.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.79.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:
|