google-apis-metastore_v1alpha 0.2.0 → 0.3.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: b39a89764ec6bcec71105ef4f2d1a864f22f0b55673be53113ef54cab6ef55a4
|
4
|
+
data.tar.gz: 0a30601a7ff601f2df6baf88ed37fed34f22e35d5161b48c68c4d5d4c9d61660
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4968ad72cb6ab988bc0f97fc55634057157ec3351cd9a8ab778632899adc26a363147110132feb2059bfa32e07ba991a26e7a2737812c26f18874540ce6f929
|
7
|
+
data.tar.gz: 01d4cb0a383b5c0a36c801ecc5dd882373ad4eb569034065d3c06bfab5e38be3400a9364a16e230291d3177ed8cfdde73e9d6e37f668c64d3e5e4ce99b42748d
|
data/CHANGELOG.md
CHANGED
@@ -301,65 +301,6 @@ module Google
|
|
301
301
|
end
|
302
302
|
end
|
303
303
|
|
304
|
-
# Represents the metadata of a long-running operation.
|
305
|
-
class GoogleCloudMetastoreV1alphaOperationMetadata
|
306
|
-
include Google::Apis::Core::Hashable
|
307
|
-
|
308
|
-
# Output only. API version used to start the operation.
|
309
|
-
# Corresponds to the JSON property `apiVersion`
|
310
|
-
# @return [String]
|
311
|
-
attr_accessor :api_version
|
312
|
-
|
313
|
-
# Output only. The time the operation was created.
|
314
|
-
# Corresponds to the JSON property `createTime`
|
315
|
-
# @return [String]
|
316
|
-
attr_accessor :create_time
|
317
|
-
|
318
|
-
# Output only. The time the operation finished running.
|
319
|
-
# Corresponds to the JSON property `endTime`
|
320
|
-
# @return [String]
|
321
|
-
attr_accessor :end_time
|
322
|
-
|
323
|
-
# Output only. Identifies whether the caller has requested cancellation of the
|
324
|
-
# operation. Operations that have successfully been cancelled have Operation.
|
325
|
-
# error value with a google.rpc.Status.code of 1, corresponding to Code.
|
326
|
-
# CANCELLED.
|
327
|
-
# Corresponds to the JSON property `requestedCancellation`
|
328
|
-
# @return [Boolean]
|
329
|
-
attr_accessor :requested_cancellation
|
330
|
-
alias_method :requested_cancellation?, :requested_cancellation
|
331
|
-
|
332
|
-
# Output only. Human-readable status of the operation, if any.
|
333
|
-
# Corresponds to the JSON property `statusMessage`
|
334
|
-
# @return [String]
|
335
|
-
attr_accessor :status_message
|
336
|
-
|
337
|
-
# Output only. Server-defined resource path for the target of the operation.
|
338
|
-
# Corresponds to the JSON property `target`
|
339
|
-
# @return [String]
|
340
|
-
attr_accessor :target
|
341
|
-
|
342
|
-
# Output only. Name of the verb executed by the operation.
|
343
|
-
# Corresponds to the JSON property `verb`
|
344
|
-
# @return [String]
|
345
|
-
attr_accessor :verb
|
346
|
-
|
347
|
-
def initialize(**args)
|
348
|
-
update!(**args)
|
349
|
-
end
|
350
|
-
|
351
|
-
# Update properties of this object
|
352
|
-
def update!(**args)
|
353
|
-
@api_version = args[:api_version] if args.key?(:api_version)
|
354
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
355
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
356
|
-
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
357
|
-
@status_message = args[:status_message] if args.key?(:status_message)
|
358
|
-
@target = args[:target] if args.key?(:target)
|
359
|
-
@verb = args[:verb] if args.key?(:verb)
|
360
|
-
end
|
361
|
-
end
|
362
|
-
|
363
304
|
# Specifies configuration information specific to running Hive metastore
|
364
305
|
# software as the metastore service.
|
365
306
|
class HiveMetastoreConfig
|
@@ -953,6 +894,12 @@ module Google
|
|
953
894
|
# @return [String]
|
954
895
|
attr_accessor :backup
|
955
896
|
|
897
|
+
# Output only. The restore details containing the revision of the service to be
|
898
|
+
# restored to, in format of JSON.
|
899
|
+
# Corresponds to the JSON property `details`
|
900
|
+
# @return [String]
|
901
|
+
attr_accessor :details
|
902
|
+
|
956
903
|
# Output only. The time when the restore ended.
|
957
904
|
# Corresponds to the JSON property `endTime`
|
958
905
|
# @return [String]
|
@@ -980,6 +927,7 @@ module Google
|
|
980
927
|
# Update properties of this object
|
981
928
|
def update!(**args)
|
982
929
|
@backup = args[:backup] if args.key?(:backup)
|
930
|
+
@details = args[:details] if args.key?(:details)
|
983
931
|
@end_time = args[:end_time] if args.key?(:end_time)
|
984
932
|
@start_time = args[:start_time] if args.key?(:start_time)
|
985
933
|
@state = args[:state] if args.key?(:state)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MetastoreV1alpha
|
18
18
|
# Version of the google-apis-metastore_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.3.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.1.2"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210222"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,12 +64,6 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
-
class GoogleCloudMetastoreV1alphaOperationMetadata
|
68
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
-
|
70
|
-
include Google::Apis::Core::JsonObjectSupport
|
71
|
-
end
|
72
|
-
|
73
67
|
class HiveMetastoreConfig
|
74
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
69
|
|
@@ -268,19 +262,6 @@ module Google
|
|
268
262
|
end
|
269
263
|
end
|
270
264
|
|
271
|
-
class GoogleCloudMetastoreV1alphaOperationMetadata
|
272
|
-
# @private
|
273
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
274
|
-
property :api_version, as: 'apiVersion'
|
275
|
-
property :create_time, as: 'createTime'
|
276
|
-
property :end_time, as: 'endTime'
|
277
|
-
property :requested_cancellation, as: 'requestedCancellation'
|
278
|
-
property :status_message, as: 'statusMessage'
|
279
|
-
property :target, as: 'target'
|
280
|
-
property :verb, as: 'verb'
|
281
|
-
end
|
282
|
-
end
|
283
|
-
|
284
265
|
class HiveMetastoreConfig
|
285
266
|
# @private
|
286
267
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -441,6 +422,7 @@ module Google
|
|
441
422
|
# @private
|
442
423
|
class Representation < Google::Apis::Core::JsonRepresentation
|
443
424
|
property :backup, as: 'backup'
|
425
|
+
property :details, as: 'details'
|
444
426
|
property :end_time, as: 'endTime'
|
445
427
|
property :start_time, as: 'startTime'
|
446
428
|
property :state, as: 'state'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-metastore_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.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-
|
11
|
+
date: 2021-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1alpha/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.3.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1alpha
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.11
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Dataproc Metastore API V1alpha
|