google-apis-dataproc_v1 0.83.0 → 0.84.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: 12f6fd06e585128f2bf051190946d1cf02370e69a50b29cae73963c1a1fe9972
|
4
|
+
data.tar.gz: 7d108f2213a1b7b300145c95c31ff6e718369fdfed3e17ec9daa6d3f1369979c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8ada5de4e3a76aa557fafec20243c9bfe05c90e3ba42b8cd309fba3d379e2960967e649ef20873fe73154cdd28dfe18f89e5f92461f7ec29f20b4847119f066
|
7
|
+
data.tar.gz: c029a5a7917ca9c0534a3ff2422487b32f255a6cc3696e7eca178d95c5ad561a27a75266b63681505814b06587c4435e0010a50b7c5c9e0a10942aef9e403608
|
data/CHANGELOG.md
CHANGED
@@ -3016,7 +3016,7 @@ module Google
|
|
3016
3016
|
|
3017
3017
|
# Optional. Resource manager tags (https://cloud.google.com/resource-manager/
|
3018
3018
|
# docs/tags/tags-creating-and-managing) to add to all instances (see Use secure
|
3019
|
-
# tags in Dataproc (https://cloud.google.com/dataproc/docs/guides/
|
3019
|
+
# tags in Dataproc (https://cloud.google.com/dataproc/docs/guides/use-secure-
|
3020
3020
|
# tags)).
|
3021
3021
|
# Corresponds to the JSON property `resourceManagerTags`
|
3022
3022
|
# @return [Hash<String,String>]
|
@@ -5009,6 +5009,13 @@ module Google
|
|
5009
5009
|
# @return [Array<Google::Apis::DataprocV1::Operation>]
|
5010
5010
|
attr_accessor :operations
|
5011
5011
|
|
5012
|
+
# Unordered list. Unreachable resources. Populated when the request sets
|
5013
|
+
# ListOperationsRequest.return_partial_success and reads across collections e.g.
|
5014
|
+
# when attempting to list all resources across all supported locations.
|
5015
|
+
# Corresponds to the JSON property `unreachable`
|
5016
|
+
# @return [Array<String>]
|
5017
|
+
attr_accessor :unreachable
|
5018
|
+
|
5012
5019
|
def initialize(**args)
|
5013
5020
|
update!(**args)
|
5014
5021
|
end
|
@@ -5017,6 +5024,7 @@ module Google
|
|
5017
5024
|
def update!(**args)
|
5018
5025
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
5019
5026
|
@operations = args[:operations] if args.key?(:operations)
|
5027
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
5020
5028
|
end
|
5021
5029
|
end
|
5022
5030
|
|
@@ -11395,13 +11403,14 @@ module Google
|
|
11395
11403
|
class UsageMetrics
|
11396
11404
|
include Google::Apis::Core::Hashable
|
11397
11405
|
|
11398
|
-
# Optional. Accelerator type being used, if any
|
11406
|
+
# Optional. DEPRECATED Accelerator type being used, if any
|
11399
11407
|
# Corresponds to the JSON property `acceleratorType`
|
11400
11408
|
# @return [String]
|
11401
11409
|
attr_accessor :accelerator_type
|
11402
11410
|
|
11403
|
-
# Optional. Accelerator usage in (milliAccelerator x seconds) (see
|
11404
|
-
# Serverless pricing (https://cloud.google.com/dataproc-serverless/
|
11411
|
+
# Optional. DEPRECATED Accelerator usage in (milliAccelerator x seconds) (see
|
11412
|
+
# Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/
|
11413
|
+
# pricing)).
|
11405
11414
|
# Corresponds to the JSON property `milliAcceleratorSeconds`
|
11406
11415
|
# @return [Fixnum]
|
11407
11416
|
attr_accessor :milli_accelerator_seconds
|
@@ -11975,6 +11984,12 @@ module Google
|
|
11975
11984
|
class YarnApplication
|
11976
11985
|
include Google::Apis::Core::Hashable
|
11977
11986
|
|
11987
|
+
# Optional. The cumulative memory usage of the application for a job, measured
|
11988
|
+
# in mb-seconds.
|
11989
|
+
# Corresponds to the JSON property `memoryMbSeconds`
|
11990
|
+
# @return [Fixnum]
|
11991
|
+
attr_accessor :memory_mb_seconds
|
11992
|
+
|
11978
11993
|
# Required. The application name.
|
11979
11994
|
# Corresponds to the JSON property `name`
|
11980
11995
|
# @return [String]
|
@@ -11998,16 +12013,24 @@ module Google
|
|
11998
12013
|
# @return [String]
|
11999
12014
|
attr_accessor :tracking_url
|
12000
12015
|
|
12016
|
+
# Optional. The cumulative CPU time consumed by the application for a job,
|
12017
|
+
# measured in vcore-seconds.
|
12018
|
+
# Corresponds to the JSON property `vcoreSeconds`
|
12019
|
+
# @return [Fixnum]
|
12020
|
+
attr_accessor :vcore_seconds
|
12021
|
+
|
12001
12022
|
def initialize(**args)
|
12002
12023
|
update!(**args)
|
12003
12024
|
end
|
12004
12025
|
|
12005
12026
|
# Update properties of this object
|
12006
12027
|
def update!(**args)
|
12028
|
+
@memory_mb_seconds = args[:memory_mb_seconds] if args.key?(:memory_mb_seconds)
|
12007
12029
|
@name = args[:name] if args.key?(:name)
|
12008
12030
|
@progress = args[:progress] if args.key?(:progress)
|
12009
12031
|
@state = args[:state] if args.key?(:state)
|
12010
12032
|
@tracking_url = args[:tracking_url] if args.key?(:tracking_url)
|
12033
|
+
@vcore_seconds = args[:vcore_seconds] if args.key?(:vcore_seconds)
|
12011
12034
|
end
|
12012
12035
|
end
|
12013
12036
|
end
|
@@ -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.84.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 = "20251003"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2845,6 +2845,7 @@ module Google
|
|
2845
2845
|
property :next_page_token, as: 'nextPageToken'
|
2846
2846
|
collection :operations, as: 'operations', class: Google::Apis::DataprocV1::Operation, decorator: Google::Apis::DataprocV1::Operation::Representation
|
2847
2847
|
|
2848
|
+
collection :unreachable, as: 'unreachable'
|
2848
2849
|
end
|
2849
2850
|
end
|
2850
2851
|
|
@@ -4704,10 +4705,12 @@ module Google
|
|
4704
4705
|
class YarnApplication
|
4705
4706
|
# @private
|
4706
4707
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4708
|
+
property :memory_mb_seconds, :numeric_string => true, as: 'memoryMbSeconds'
|
4707
4709
|
property :name, as: 'name'
|
4708
4710
|
property :progress, as: 'progress'
|
4709
4711
|
property :state, as: 'state'
|
4710
4712
|
property :tracking_url, as: 'trackingUrl'
|
4713
|
+
property :vcore_seconds, :numeric_string => true, as: 'vcoreSeconds'
|
4711
4714
|
end
|
4712
4715
|
end
|
4713
4716
|
end
|
@@ -1553,6 +1553,13 @@ module Google
|
|
1553
1553
|
# The standard list page size.
|
1554
1554
|
# @param [String] page_token
|
1555
1555
|
# The standard list page token.
|
1556
|
+
# @param [Boolean] return_partial_success
|
1557
|
+
# When set to true, operations that are reachable are returned as normal, and
|
1558
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
1559
|
+
# unreachable field.This can only be true when reading across collections e.g.
|
1560
|
+
# when parent is set to "projects/example/locations/-".This field is not by
|
1561
|
+
# default supported and will result in an UNIMPLEMENTED error if set unless
|
1562
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1556
1563
|
# @param [String] fields
|
1557
1564
|
# Selector specifying which fields to include in a partial response.
|
1558
1565
|
# @param [String] quota_user
|
@@ -1570,7 +1577,7 @@ module Google
|
|
1570
1577
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1571
1578
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1572
1579
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1573
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1580
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1574
1581
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
1575
1582
|
command.response_representation = Google::Apis::DataprocV1::ListOperationsResponse::Representation
|
1576
1583
|
command.response_class = Google::Apis::DataprocV1::ListOperationsResponse
|
@@ -1578,6 +1585,7 @@ module Google
|
|
1578
1585
|
command.query['filter'] = filter unless filter.nil?
|
1579
1586
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1580
1587
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1588
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1581
1589
|
command.query['fields'] = fields unless fields.nil?
|
1582
1590
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1583
1591
|
execute_or_queue_command(command, &block)
|
@@ -4880,6 +4888,13 @@ module Google
|
|
4880
4888
|
# The standard list page size.
|
4881
4889
|
# @param [String] page_token
|
4882
4890
|
# The standard list page token.
|
4891
|
+
# @param [Boolean] return_partial_success
|
4892
|
+
# When set to true, operations that are reachable are returned as normal, and
|
4893
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
4894
|
+
# unreachable field.This can only be true when reading across collections e.g.
|
4895
|
+
# when parent is set to "projects/example/locations/-".This field is not by
|
4896
|
+
# default supported and will result in an UNIMPLEMENTED error if set unless
|
4897
|
+
# explicitly documented otherwise in service or product specific documentation.
|
4883
4898
|
# @param [String] fields
|
4884
4899
|
# Selector specifying which fields to include in a partial response.
|
4885
4900
|
# @param [String] quota_user
|
@@ -4897,7 +4912,7 @@ module Google
|
|
4897
4912
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4898
4913
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4899
4914
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4900
|
-
def list_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4915
|
+
def list_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4901
4916
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
4902
4917
|
command.response_representation = Google::Apis::DataprocV1::ListOperationsResponse::Representation
|
4903
4918
|
command.response_class = Google::Apis::DataprocV1::ListOperationsResponse
|
@@ -4905,6 +4920,7 @@ module Google
|
|
4905
4920
|
command.query['filter'] = filter unless filter.nil?
|
4906
4921
|
command.query['pageSize'] = page_size unless page_size.nil?
|
4907
4922
|
command.query['pageToken'] = page_token unless page_token.nil?
|
4923
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
4908
4924
|
command.query['fields'] = fields unless fields.nil?
|
4909
4925
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
4910
4926
|
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.84.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.84.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:
|