google-apis-dataproc_v1 0.13.0 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d30e8ccfda7d6fb1772516a2c32be72e98ab843b57eaffe9694d10cc66c59ac5
|
4
|
+
data.tar.gz: 1a08226168e4164910254669cc8ca20eca8230fe904f6de15f7dd28b751cc83a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5726c387707c723784264b9b9fdebe028d461a06c329d0affc7faedbe77c886ac9261ff1fda235231f80bda489fa5d20d2303f98a05b5b311a538b559191f51c
|
7
|
+
data.tar.gz: 52de3fe053ecfb2f8aff5f14bb75a47ca60c0c0b7392da73dd32b4cc60810fafaf6e89b1de6190685abba95859fe21c62fc35d1f2c6ab097f4b8c219c82c8dcc
|
data/CHANGELOG.md
CHANGED
@@ -3034,6 +3034,67 @@ module Google
|
|
3034
3034
|
end
|
3035
3035
|
end
|
3036
3036
|
|
3037
|
+
# Metadata describing the Session operation.
|
3038
|
+
class SessionOperationMetadata
|
3039
|
+
include Google::Apis::Core::Hashable
|
3040
|
+
|
3041
|
+
# The time when the operation was created.
|
3042
|
+
# Corresponds to the JSON property `createTime`
|
3043
|
+
# @return [String]
|
3044
|
+
attr_accessor :create_time
|
3045
|
+
|
3046
|
+
# Short description of the operation.
|
3047
|
+
# Corresponds to the JSON property `description`
|
3048
|
+
# @return [String]
|
3049
|
+
attr_accessor :description
|
3050
|
+
|
3051
|
+
# The time when the operation was finished.
|
3052
|
+
# Corresponds to the JSON property `doneTime`
|
3053
|
+
# @return [String]
|
3054
|
+
attr_accessor :done_time
|
3055
|
+
|
3056
|
+
# Labels associated with the operation.
|
3057
|
+
# Corresponds to the JSON property `labels`
|
3058
|
+
# @return [Hash<String,String>]
|
3059
|
+
attr_accessor :labels
|
3060
|
+
|
3061
|
+
# The operation type.
|
3062
|
+
# Corresponds to the JSON property `operationType`
|
3063
|
+
# @return [String]
|
3064
|
+
attr_accessor :operation_type
|
3065
|
+
|
3066
|
+
# Name of the session for the operation.
|
3067
|
+
# Corresponds to the JSON property `session`
|
3068
|
+
# @return [String]
|
3069
|
+
attr_accessor :session
|
3070
|
+
|
3071
|
+
# Session UUID for the operation.
|
3072
|
+
# Corresponds to the JSON property `sessionUuid`
|
3073
|
+
# @return [String]
|
3074
|
+
attr_accessor :session_uuid
|
3075
|
+
|
3076
|
+
# Warnings encountered during operation execution.
|
3077
|
+
# Corresponds to the JSON property `warnings`
|
3078
|
+
# @return [Array<String>]
|
3079
|
+
attr_accessor :warnings
|
3080
|
+
|
3081
|
+
def initialize(**args)
|
3082
|
+
update!(**args)
|
3083
|
+
end
|
3084
|
+
|
3085
|
+
# Update properties of this object
|
3086
|
+
def update!(**args)
|
3087
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
3088
|
+
@description = args[:description] if args.key?(:description)
|
3089
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
3090
|
+
@labels = args[:labels] if args.key?(:labels)
|
3091
|
+
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
3092
|
+
@session = args[:session] if args.key?(:session)
|
3093
|
+
@session_uuid = args[:session_uuid] if args.key?(:session_uuid)
|
3094
|
+
@warnings = args[:warnings] if args.key?(:warnings)
|
3095
|
+
end
|
3096
|
+
end
|
3097
|
+
|
3037
3098
|
# Request message for SetIamPolicy method.
|
3038
3099
|
class SetIamPolicyRequest
|
3039
3100
|
include Google::Apis::Core::Hashable
|
@@ -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.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210902"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -430,6 +430,12 @@ module Google
|
|
430
430
|
include Google::Apis::Core::JsonObjectSupport
|
431
431
|
end
|
432
432
|
|
433
|
+
class SessionOperationMetadata
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
|
+
|
436
|
+
include Google::Apis::Core::JsonObjectSupport
|
437
|
+
end
|
438
|
+
|
433
439
|
class SetIamPolicyRequest
|
434
440
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
441
|
|
@@ -1301,6 +1307,20 @@ module Google
|
|
1301
1307
|
end
|
1302
1308
|
end
|
1303
1309
|
|
1310
|
+
class SessionOperationMetadata
|
1311
|
+
# @private
|
1312
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1313
|
+
property :create_time, as: 'createTime'
|
1314
|
+
property :description, as: 'description'
|
1315
|
+
property :done_time, as: 'doneTime'
|
1316
|
+
hash :labels, as: 'labels'
|
1317
|
+
property :operation_type, as: 'operationType'
|
1318
|
+
property :session, as: 'session'
|
1319
|
+
property :session_uuid, as: 'sessionUuid'
|
1320
|
+
collection :warnings, as: 'warnings'
|
1321
|
+
end
|
1322
|
+
end
|
1323
|
+
|
1304
1324
|
class SetIamPolicyRequest
|
1305
1325
|
# @private
|
1306
1326
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-09-
|
11
|
+
date: 2021-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dataproc_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dataproc_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|