google-apis-bigtableadmin_v1 0.9.0 → 0.10.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: 6f1bad2d769aed3ea80bb59a74418bbb6d5e89e5b3dbe7608bdde976bbafde78
|
4
|
+
data.tar.gz: 12214e6745a583da5e55d47d06d9952b4b203e9aa96e4f52b93886830c5891b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b917d6cef58127f12d67d6e156460b9e3ac6a25210eedb4f7fd41afabbef9cd8dc63bb2187f1a8e39f502c1e87627ca97c1def5e84d0000ab0f4b51e922fd4d
|
7
|
+
data.tar.gz: df5ca426e3164087711d02be8b61c2d62de65f1bce40a17296a2203dcfaaad439e69d1716c92a35eb44e4ac1bbad9f3b7b72c9f77ba5baef25679be43164be4a
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/bigtableadmin_v1"
|
|
51
51
|
client = Google::Apis::BigtableadminV1::BigtableAdminService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -217,8 +217,8 @@ module Google
|
|
217
217
|
# @return [String]
|
218
218
|
attr_accessor :name
|
219
219
|
|
220
|
-
#
|
221
|
-
#
|
220
|
+
# The number of nodes allocated to this cluster. More nodes enable higher
|
221
|
+
# throughput and more consistent performance.
|
222
222
|
# Corresponds to the JSON property `serveNodes`
|
223
223
|
# @return [Fixnum]
|
224
224
|
attr_accessor :serve_nodes
|
@@ -754,8 +754,7 @@ module Google
|
|
754
754
|
# @return [Google::Apis::BigtableadminV1::Cluster]
|
755
755
|
attr_accessor :cluster
|
756
756
|
|
757
|
-
# Required. The subset of Cluster fields which should be replaced.
|
758
|
-
# explicitly set.
|
757
|
+
# Required. The subset of Cluster fields which should be replaced.
|
759
758
|
# Corresponds to the JSON property `updateMask`
|
760
759
|
# @return [String]
|
761
760
|
attr_accessor :update_mask
|
@@ -920,6 +919,38 @@ module Google
|
|
920
919
|
end
|
921
920
|
end
|
922
921
|
|
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
|
+
|
923
954
|
# The metadata for the Operation returned by UpdateAppProfile.
|
924
955
|
class UpdateAppProfileMetadata
|
925
956
|
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.10.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 = "20211202"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -172,6 +172,12 @@ module Google
|
|
172
172
|
include Google::Apis::Core::JsonObjectSupport
|
173
173
|
end
|
174
174
|
|
175
|
+
class UndeleteTableMetadata
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
175
181
|
class UpdateAppProfileMetadata
|
176
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
183
|
|
@@ -440,6 +446,15 @@ module Google
|
|
440
446
|
end
|
441
447
|
end
|
442
448
|
|
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
|
+
|
443
458
|
class UpdateAppProfileMetadata
|
444
459
|
# @private
|
445
460
|
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.10.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:
|
11
|
+
date: 2022-01-10 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.10.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.
|
78
|
+
rubygems_version: 3.3.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Bigtable Admin API V1
|