google-apis-bigtableadmin_v1 0.6.0 → 0.10.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: e820b33110cfb6687679a9211a38d7d6f6395b8b9408d6709d96ce8ac59c0a67
4
- data.tar.gz: '087988b4e6dfe0850d140edbfc3e395cb64e280f46c903e0faae389228997a7d'
3
+ metadata.gz: 6f1bad2d769aed3ea80bb59a74418bbb6d5e89e5b3dbe7608bdde976bbafde78
4
+ data.tar.gz: 12214e6745a583da5e55d47d06d9952b4b203e9aa96e4f52b93886830c5891b9
5
5
  SHA512:
6
- metadata.gz: bcf3524c93f817b1f1bc860eb50381de699e83c8be65312b11830b77c1c797ca848c00154392534fae88d543f310823d87e1240d401aaf83af63a97bda2bd28b
7
- data.tar.gz: 9652d0d4301677e072e726856923c4059d0dc79d1b20c59241ef23804949b25c1247c05c730eabcd72f30c31b108f3ec727b0a798545288385c2bac7e3217950
6
+ metadata.gz: 0b917d6cef58127f12d67d6e156460b9e3ac6a25210eedb4f7fd41afabbef9cd8dc63bb2187f1a8e39f502c1e87627ca97c1def5e84d0000ab0f4b51e922fd4d
7
+ data.tar.gz: df5ca426e3164087711d02be8b61c2d62de65f1bce40a17296a2203dcfaaad439e69d1716c92a35eb44e4ac1bbad9f3b7b72c9f77ba5baef25679be43164be4a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-bigtableadmin_v1
2
2
 
3
+ ### v0.10.0 (2021-12-14)
4
+
5
+ * Regenerated from discovery document revision 20211202
6
+
7
+ ### v0.9.0 (2021-11-16)
8
+
9
+ * Regenerated from discovery document revision 20211104
10
+
11
+ ### v0.8.0 (2021-10-20)
12
+
13
+ * Unspecified changes
14
+
15
+ ### v0.7.0 (2021-09-07)
16
+
17
+ * Regenerated from discovery document revision 20210811
18
+
3
19
  ### v0.6.0 (2021-06-29)
4
20
 
5
21
  * Regenerated using generator version 0.4.0
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.authentication = # ... use the googleauth gem to create credentials
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.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Bigtableadmin service in particular.)
67
67
 
@@ -22,6 +22,51 @@ module Google
22
22
  module Apis
23
23
  module BigtableadminV1
24
24
 
25
+ # Limits for the number of nodes a Cluster can autoscale up/down to.
26
+ class AutoscalingLimits
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # Required. Maximum number of nodes to scale up to.
30
+ # Corresponds to the JSON property `maxServeNodes`
31
+ # @return [Fixnum]
32
+ attr_accessor :max_serve_nodes
33
+
34
+ # Required. Minimum number of nodes to scale down to.
35
+ # Corresponds to the JSON property `minServeNodes`
36
+ # @return [Fixnum]
37
+ attr_accessor :min_serve_nodes
38
+
39
+ def initialize(**args)
40
+ update!(**args)
41
+ end
42
+
43
+ # Update properties of this object
44
+ def update!(**args)
45
+ @max_serve_nodes = args[:max_serve_nodes] if args.key?(:max_serve_nodes)
46
+ @min_serve_nodes = args[:min_serve_nodes] if args.key?(:min_serve_nodes)
47
+ end
48
+ end
49
+
50
+ # The Autoscaling targets for a Cluster. These determine the recommended nodes.
51
+ class AutoscalingTargets
52
+ include Google::Apis::Core::Hashable
53
+
54
+ # The cpu utilization that the Autoscaler should be trying to achieve. This
55
+ # number is on a scale from 0 (no utilization) to 100 (total utilization).
56
+ # Corresponds to the JSON property `cpuUtilizationPercent`
57
+ # @return [Fixnum]
58
+ attr_accessor :cpu_utilization_percent
59
+
60
+ def initialize(**args)
61
+ update!(**args)
62
+ end
63
+
64
+ # Update properties of this object
65
+ def update!(**args)
66
+ @cpu_utilization_percent = args[:cpu_utilization_percent] if args.key?(:cpu_utilization_percent)
67
+ end
68
+ end
69
+
25
70
  # A backup of a Cloud Bigtable table.
26
71
  class Backup
27
72
  include Google::Apis::Core::Hashable
@@ -142,6 +187,11 @@ module Google
142
187
  class Cluster
143
188
  include Google::Apis::Core::Hashable
144
189
 
190
+ # Configuration for a cluster.
191
+ # Corresponds to the JSON property `clusterConfig`
192
+ # @return [Google::Apis::BigtableadminV1::ClusterConfig]
193
+ attr_accessor :cluster_config
194
+
145
195
  # Immutable. The type of storage used by this cluster to serve its parent
146
196
  # instance's tables, unless explicitly overridden.
147
197
  # Corresponds to the JSON property `defaultStorageType`
@@ -167,8 +217,8 @@ module Google
167
217
  # @return [String]
168
218
  attr_accessor :name
169
219
 
170
- # Required. The number of nodes allocated to this cluster. More nodes enable
171
- # higher throughput and more consistent performance.
220
+ # The number of nodes allocated to this cluster. More nodes enable higher
221
+ # throughput and more consistent performance.
172
222
  # Corresponds to the JSON property `serveNodes`
173
223
  # @return [Fixnum]
174
224
  attr_accessor :serve_nodes
@@ -184,6 +234,7 @@ module Google
184
234
 
185
235
  # Update properties of this object
186
236
  def update!(**args)
237
+ @cluster_config = args[:cluster_config] if args.key?(:cluster_config)
187
238
  @default_storage_type = args[:default_storage_type] if args.key?(:default_storage_type)
188
239
  @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
189
240
  @location = args[:location] if args.key?(:location)
@@ -193,6 +244,50 @@ module Google
193
244
  end
194
245
  end
195
246
 
247
+ # Autoscaling config for a cluster.
248
+ class ClusterAutoscalingConfig
249
+ include Google::Apis::Core::Hashable
250
+
251
+ # Limits for the number of nodes a Cluster can autoscale up/down to.
252
+ # Corresponds to the JSON property `autoscalingLimits`
253
+ # @return [Google::Apis::BigtableadminV1::AutoscalingLimits]
254
+ attr_accessor :autoscaling_limits
255
+
256
+ # The Autoscaling targets for a Cluster. These determine the recommended nodes.
257
+ # Corresponds to the JSON property `autoscalingTargets`
258
+ # @return [Google::Apis::BigtableadminV1::AutoscalingTargets]
259
+ attr_accessor :autoscaling_targets
260
+
261
+ def initialize(**args)
262
+ update!(**args)
263
+ end
264
+
265
+ # Update properties of this object
266
+ def update!(**args)
267
+ @autoscaling_limits = args[:autoscaling_limits] if args.key?(:autoscaling_limits)
268
+ @autoscaling_targets = args[:autoscaling_targets] if args.key?(:autoscaling_targets)
269
+ end
270
+ end
271
+
272
+ # Configuration for a cluster.
273
+ class ClusterConfig
274
+ include Google::Apis::Core::Hashable
275
+
276
+ # Autoscaling config for a cluster.
277
+ # Corresponds to the JSON property `clusterAutoscalingConfig`
278
+ # @return [Google::Apis::BigtableadminV1::ClusterAutoscalingConfig]
279
+ attr_accessor :cluster_autoscaling_config
280
+
281
+ def initialize(**args)
282
+ update!(**args)
283
+ end
284
+
285
+ # Update properties of this object
286
+ def update!(**args)
287
+ @cluster_autoscaling_config = args[:cluster_autoscaling_config] if args.key?(:cluster_autoscaling_config)
288
+ end
289
+ end
290
+
196
291
  # Metadata type for the operation returned by CreateBackup.
197
292
  class CreateBackupMetadata
198
293
  include Google::Apis::Core::Hashable
@@ -501,6 +596,13 @@ module Google
501
596
  class Instance
502
597
  include Google::Apis::Core::Hashable
503
598
 
599
+ # Output only. A server-assigned timestamp representing when this Instance was
600
+ # created. For instances created before this field was added (August 2021), this
601
+ # value is `seconds: 0, nanos: 1`.
602
+ # Corresponds to the JSON property `createTime`
603
+ # @return [String]
604
+ attr_accessor :create_time
605
+
504
606
  # Required. The descriptive name for this instance as it appears in UIs. Can be
505
607
  # changed at any time, but should be kept globally unique to avoid confusion.
506
608
  # Corresponds to the JSON property `displayName`
@@ -541,6 +643,7 @@ module Google
541
643
 
542
644
  # Update properties of this object
543
645
  def update!(**args)
646
+ @create_time = args[:create_time] if args.key?(:create_time)
544
647
  @display_name = args[:display_name] if args.key?(:display_name)
545
648
  @labels = args[:labels] if args.key?(:labels)
546
649
  @name = args[:name] if args.key?(:name)
@@ -610,6 +713,63 @@ module Google
610
713
  end
611
714
  end
612
715
 
716
+ # The metadata for the Operation returned by PartialUpdateCluster.
717
+ class PartialUpdateClusterMetadata
718
+ include Google::Apis::Core::Hashable
719
+
720
+ # The time at which the operation failed or was completed successfully.
721
+ # Corresponds to the JSON property `finishTime`
722
+ # @return [String]
723
+ attr_accessor :finish_time
724
+
725
+ # Request message for BigtableInstanceAdmin.PartialUpdateCluster.
726
+ # Corresponds to the JSON property `originalRequest`
727
+ # @return [Google::Apis::BigtableadminV1::PartialUpdateClusterRequest]
728
+ attr_accessor :original_request
729
+
730
+ # The time at which the original request was received.
731
+ # Corresponds to the JSON property `requestTime`
732
+ # @return [String]
733
+ attr_accessor :request_time
734
+
735
+ def initialize(**args)
736
+ update!(**args)
737
+ end
738
+
739
+ # Update properties of this object
740
+ def update!(**args)
741
+ @finish_time = args[:finish_time] if args.key?(:finish_time)
742
+ @original_request = args[:original_request] if args.key?(:original_request)
743
+ @request_time = args[:request_time] if args.key?(:request_time)
744
+ end
745
+ end
746
+
747
+ # Request message for BigtableInstanceAdmin.PartialUpdateCluster.
748
+ class PartialUpdateClusterRequest
749
+ include Google::Apis::Core::Hashable
750
+
751
+ # A resizable group of nodes in a particular cloud location, capable of serving
752
+ # all Tables in the parent Instance.
753
+ # Corresponds to the JSON property `cluster`
754
+ # @return [Google::Apis::BigtableadminV1::Cluster]
755
+ attr_accessor :cluster
756
+
757
+ # Required. The subset of Cluster fields which should be replaced.
758
+ # Corresponds to the JSON property `updateMask`
759
+ # @return [String]
760
+ attr_accessor :update_mask
761
+
762
+ def initialize(**args)
763
+ update!(**args)
764
+ end
765
+
766
+ # Update properties of this object
767
+ def update!(**args)
768
+ @cluster = args[:cluster] if args.key?(:cluster)
769
+ @update_mask = args[:update_mask] if args.key?(:update_mask)
770
+ end
771
+ end
772
+
613
773
  # Request message for BigtableInstanceAdmin.PartialUpdateInstance.
614
774
  class PartialUpdateInstanceRequest
615
775
  include Google::Apis::Core::Hashable
@@ -759,6 +919,38 @@ module Google
759
919
  end
760
920
  end
761
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
+
762
954
  # The metadata for the Operation returned by UpdateAppProfile.
763
955
  class UpdateAppProfileMetadata
764
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.6.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 = "20210323"
25
+ REVISION = "20211202"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,18 @@ module Google
22
22
  module Apis
23
23
  module BigtableadminV1
24
24
 
25
+ class AutoscalingLimits
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
31
+ class AutoscalingTargets
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
25
37
  class Backup
26
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
39
 
@@ -40,6 +52,18 @@ module Google
40
52
  include Google::Apis::Core::JsonObjectSupport
41
53
  end
42
54
 
55
+ class ClusterAutoscalingConfig
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
61
+ class ClusterConfig
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
43
67
  class CreateBackupMetadata
44
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
69
 
@@ -112,6 +136,18 @@ module Google
112
136
  include Google::Apis::Core::JsonObjectSupport
113
137
  end
114
138
 
139
+ class PartialUpdateClusterMetadata
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
145
+ class PartialUpdateClusterRequest
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
115
151
  class PartialUpdateInstanceRequest
116
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
153
 
@@ -136,6 +172,12 @@ module Google
136
172
  include Google::Apis::Core::JsonObjectSupport
137
173
  end
138
174
 
175
+ class UndeleteTableMetadata
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
139
181
  class UpdateAppProfileMetadata
140
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
183
 
@@ -154,6 +196,21 @@ module Google
154
196
  include Google::Apis::Core::JsonObjectSupport
155
197
  end
156
198
 
199
+ class AutoscalingLimits
200
+ # @private
201
+ class Representation < Google::Apis::Core::JsonRepresentation
202
+ property :max_serve_nodes, as: 'maxServeNodes'
203
+ property :min_serve_nodes, as: 'minServeNodes'
204
+ end
205
+ end
206
+
207
+ class AutoscalingTargets
208
+ # @private
209
+ class Representation < Google::Apis::Core::JsonRepresentation
210
+ property :cpu_utilization_percent, as: 'cpuUtilizationPercent'
211
+ end
212
+ end
213
+
157
214
  class Backup
158
215
  # @private
159
216
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -182,6 +239,8 @@ module Google
182
239
  class Cluster
183
240
  # @private
184
241
  class Representation < Google::Apis::Core::JsonRepresentation
242
+ property :cluster_config, as: 'clusterConfig', class: Google::Apis::BigtableadminV1::ClusterConfig, decorator: Google::Apis::BigtableadminV1::ClusterConfig::Representation
243
+
185
244
  property :default_storage_type, as: 'defaultStorageType'
186
245
  property :encryption_config, as: 'encryptionConfig', class: Google::Apis::BigtableadminV1::EncryptionConfig, decorator: Google::Apis::BigtableadminV1::EncryptionConfig::Representation
187
246
 
@@ -192,6 +251,24 @@ module Google
192
251
  end
193
252
  end
194
253
 
254
+ class ClusterAutoscalingConfig
255
+ # @private
256
+ class Representation < Google::Apis::Core::JsonRepresentation
257
+ property :autoscaling_limits, as: 'autoscalingLimits', class: Google::Apis::BigtableadminV1::AutoscalingLimits, decorator: Google::Apis::BigtableadminV1::AutoscalingLimits::Representation
258
+
259
+ property :autoscaling_targets, as: 'autoscalingTargets', class: Google::Apis::BigtableadminV1::AutoscalingTargets, decorator: Google::Apis::BigtableadminV1::AutoscalingTargets::Representation
260
+
261
+ end
262
+ end
263
+
264
+ class ClusterConfig
265
+ # @private
266
+ class Representation < Google::Apis::Core::JsonRepresentation
267
+ property :cluster_autoscaling_config, as: 'clusterAutoscalingConfig', class: Google::Apis::BigtableadminV1::ClusterAutoscalingConfig, decorator: Google::Apis::BigtableadminV1::ClusterAutoscalingConfig::Representation
268
+
269
+ end
270
+ end
271
+
195
272
  class CreateBackupMetadata
196
273
  # @private
197
274
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -283,6 +360,7 @@ module Google
283
360
  class Instance
284
361
  # @private
285
362
  class Representation < Google::Apis::Core::JsonRepresentation
363
+ property :create_time, as: 'createTime'
286
364
  property :display_name, as: 'displayName'
287
365
  hash :labels, as: 'labels'
288
366
  property :name, as: 'name'
@@ -309,6 +387,25 @@ module Google
309
387
  end
310
388
  end
311
389
 
390
+ class PartialUpdateClusterMetadata
391
+ # @private
392
+ class Representation < Google::Apis::Core::JsonRepresentation
393
+ property :finish_time, as: 'finishTime'
394
+ property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV1::PartialUpdateClusterRequest, decorator: Google::Apis::BigtableadminV1::PartialUpdateClusterRequest::Representation
395
+
396
+ property :request_time, as: 'requestTime'
397
+ end
398
+ end
399
+
400
+ class PartialUpdateClusterRequest
401
+ # @private
402
+ class Representation < Google::Apis::Core::JsonRepresentation
403
+ property :cluster, as: 'cluster', class: Google::Apis::BigtableadminV1::Cluster, decorator: Google::Apis::BigtableadminV1::Cluster::Representation
404
+
405
+ property :update_mask, as: 'updateMask'
406
+ end
407
+ end
408
+
312
409
  class PartialUpdateInstanceRequest
313
410
  # @private
314
411
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -349,6 +446,15 @@ module Google
349
446
  end
350
447
  end
351
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
+
352
458
  class UpdateAppProfileMetadata
353
459
  # @private
354
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.6.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: 2021-07-05 00:00:00.000000000 Z
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
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigtableadmin_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v1/v0.6.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigtableadmin_v1
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.10.0
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: []
65
65
  require_paths:
@@ -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.2.17
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