google-apis-bigtableadmin_v1 0.10.0 → 0.11.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: ccdf8c0e2b1863bf0a6f5e4a4ed6fdb88be711da3f7eb752f5c6bcd8ca198c50
|
4
|
+
data.tar.gz: 8e127e4839bbd61ac287272a10f504c655db33151faa5feaba7469f777556acc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e1382090d43a0fff1fedfc825dd5c390fc220960a29071679a85fa386a5564bd1c01386936d662ec9dddea50752812dd87e7e38e29a900e2f38ab4e5b34b020
|
7
|
+
data.tar.gz: 31aa23b61907aec7f603ae21c3113683065304ee73910a4794b0c54030992cd66d6a8a72d985cc8d384f45d5a78643552fdfb0d1419e89ff79be2526a32ceaf9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-bigtableadmin_v1
|
2
2
|
|
3
|
+
### v0.11.0 (2022-01-14)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20211218
|
6
|
+
* Regenerated using generator version 0.4.1
|
7
|
+
|
3
8
|
### v0.10.0 (2021-12-14)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20211202
|
@@ -541,56 +541,6 @@ module Google
|
|
541
541
|
end
|
542
542
|
end
|
543
543
|
|
544
|
-
# Added to the error payload.
|
545
|
-
class FailureTrace
|
546
|
-
include Google::Apis::Core::Hashable
|
547
|
-
|
548
|
-
#
|
549
|
-
# Corresponds to the JSON property `frames`
|
550
|
-
# @return [Array<Google::Apis::BigtableadminV1::Frame>]
|
551
|
-
attr_accessor :frames
|
552
|
-
|
553
|
-
def initialize(**args)
|
554
|
-
update!(**args)
|
555
|
-
end
|
556
|
-
|
557
|
-
# Update properties of this object
|
558
|
-
def update!(**args)
|
559
|
-
@frames = args[:frames] if args.key?(:frames)
|
560
|
-
end
|
561
|
-
end
|
562
|
-
|
563
|
-
#
|
564
|
-
class Frame
|
565
|
-
include Google::Apis::Core::Hashable
|
566
|
-
|
567
|
-
#
|
568
|
-
# Corresponds to the JSON property `targetName`
|
569
|
-
# @return [String]
|
570
|
-
attr_accessor :target_name
|
571
|
-
|
572
|
-
#
|
573
|
-
# Corresponds to the JSON property `workflowGuid`
|
574
|
-
# @return [String]
|
575
|
-
attr_accessor :workflow_guid
|
576
|
-
|
577
|
-
#
|
578
|
-
# Corresponds to the JSON property `zoneId`
|
579
|
-
# @return [String]
|
580
|
-
attr_accessor :zone_id
|
581
|
-
|
582
|
-
def initialize(**args)
|
583
|
-
update!(**args)
|
584
|
-
end
|
585
|
-
|
586
|
-
# Update properties of this object
|
587
|
-
def update!(**args)
|
588
|
-
@target_name = args[:target_name] if args.key?(:target_name)
|
589
|
-
@workflow_guid = args[:workflow_guid] if args.key?(:workflow_guid)
|
590
|
-
@zone_id = args[:zone_id] if args.key?(:zone_id)
|
591
|
-
end
|
592
|
-
end
|
593
|
-
|
594
544
|
# A collection of Bigtable Tables and the resources that serve them. All tables
|
595
545
|
# in an instance are served from all Clusters in the instance.
|
596
546
|
class Instance
|
@@ -919,38 +869,6 @@ module Google
|
|
919
869
|
end
|
920
870
|
end
|
921
871
|
|
922
|
-
# Metadata type for the operation returned by google.bigtable.admin.v2.
|
923
|
-
# BigtableTableAdmin.UndeleteTable.
|
924
|
-
class UndeleteTableMetadata
|
925
|
-
include Google::Apis::Core::Hashable
|
926
|
-
|
927
|
-
# If set, the time at which this operation finished or was cancelled.
|
928
|
-
# Corresponds to the JSON property `endTime`
|
929
|
-
# @return [String]
|
930
|
-
attr_accessor :end_time
|
931
|
-
|
932
|
-
# The name of the table being restored.
|
933
|
-
# Corresponds to the JSON property `name`
|
934
|
-
# @return [String]
|
935
|
-
attr_accessor :name
|
936
|
-
|
937
|
-
# The time at which this operation started.
|
938
|
-
# Corresponds to the JSON property `startTime`
|
939
|
-
# @return [String]
|
940
|
-
attr_accessor :start_time
|
941
|
-
|
942
|
-
def initialize(**args)
|
943
|
-
update!(**args)
|
944
|
-
end
|
945
|
-
|
946
|
-
# Update properties of this object
|
947
|
-
def update!(**args)
|
948
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
949
|
-
@name = args[:name] if args.key?(:name)
|
950
|
-
@start_time = args[:start_time] if args.key?(:start_time)
|
951
|
-
end
|
952
|
-
end
|
953
|
-
|
954
872
|
# The metadata for the Operation returned by UpdateAppProfile.
|
955
873
|
class UpdateAppProfileMetadata
|
956
874
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BigtableadminV1
|
18
18
|
# Version of the google-apis-bigtableadmin_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211218"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -106,18 +106,6 @@ module Google
|
|
106
106
|
include Google::Apis::Core::JsonObjectSupport
|
107
107
|
end
|
108
108
|
|
109
|
-
class FailureTrace
|
110
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
-
|
112
|
-
include Google::Apis::Core::JsonObjectSupport
|
113
|
-
end
|
114
|
-
|
115
|
-
class Frame
|
116
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
-
|
118
|
-
include Google::Apis::Core::JsonObjectSupport
|
119
|
-
end
|
120
|
-
|
121
109
|
class Instance
|
122
110
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
111
|
|
@@ -172,12 +160,6 @@ module Google
|
|
172
160
|
include Google::Apis::Core::JsonObjectSupport
|
173
161
|
end
|
174
162
|
|
175
|
-
class UndeleteTableMetadata
|
176
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
-
|
178
|
-
include Google::Apis::Core::JsonObjectSupport
|
179
|
-
end
|
180
|
-
|
181
163
|
class UpdateAppProfileMetadata
|
182
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
165
|
|
@@ -340,23 +322,6 @@ module Google
|
|
340
322
|
end
|
341
323
|
end
|
342
324
|
|
343
|
-
class FailureTrace
|
344
|
-
# @private
|
345
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
346
|
-
collection :frames, as: 'frames', class: Google::Apis::BigtableadminV1::Frame, decorator: Google::Apis::BigtableadminV1::Frame::Representation
|
347
|
-
|
348
|
-
end
|
349
|
-
end
|
350
|
-
|
351
|
-
class Frame
|
352
|
-
# @private
|
353
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
354
|
-
property :target_name, as: 'targetName'
|
355
|
-
property :workflow_guid, as: 'workflowGuid'
|
356
|
-
property :zone_id, as: 'zoneId'
|
357
|
-
end
|
358
|
-
end
|
359
|
-
|
360
325
|
class Instance
|
361
326
|
# @private
|
362
327
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -446,15 +411,6 @@ module Google
|
|
446
411
|
end
|
447
412
|
end
|
448
413
|
|
449
|
-
class UndeleteTableMetadata
|
450
|
-
# @private
|
451
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
452
|
-
property :end_time, as: 'endTime'
|
453
|
-
property :name, as: 'name'
|
454
|
-
property :start_time, as: 'startTime'
|
455
|
-
end
|
456
|
-
end
|
457
|
-
|
458
414
|
class UpdateAppProfileMetadata
|
459
415
|
# @private
|
460
416
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-bigtableadmin_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.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: 2022-01-
|
11
|
+
date: 2022-01-17 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/main/generated/google-apis-bigtableadmin_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v1/v0.11.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigtableadmin_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Bigtable Admin API V1
|