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: 0e9f17a55b881acbf69528b2380d873848cb9025494059ab61a3fed13ce6b7d6
4
- data.tar.gz: a0059fbdb618377bedda502d16422a9fa0cc0c21a0496c4372cc23de07e6f8d2
3
+ metadata.gz: 6f1bad2d769aed3ea80bb59a74418bbb6d5e89e5b3dbe7608bdde976bbafde78
4
+ data.tar.gz: 12214e6745a583da5e55d47d06d9952b4b203e9aa96e4f52b93886830c5891b9
5
5
  SHA512:
6
- metadata.gz: '084d11c8e7f64a5faa0eb0e88f819613032b28748546a294c57c98e78223c9c236dcfe2ae4932d718ee56495d05cbd912a3bbc474dbda8033c97137102d9f2c6'
7
- data.tar.gz: 94ef00d70eadbe31e2d84d7d416f6d90fa2cd333ddb3b92b9615db4e531ea05589b2c91642bef9b0b7e54df4c73d5c67ad55e49f4becc0f3a4b1d819dadebcd3
6
+ metadata.gz: 0b917d6cef58127f12d67d6e156460b9e3ac6a25210eedb4f7fd41afabbef9cd8dc63bb2187f1a8e39f502c1e87627ca97c1def5e84d0000ab0f4b51e922fd4d
7
+ data.tar.gz: df5ca426e3164087711d02be8b61c2d62de65f1bce40a17296a2203dcfaaad439e69d1716c92a35eb44e4ac1bbad9f3b7b72c9f77ba5baef25679be43164be4a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.9.0 (2021-11-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20211104
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.
@@ -217,8 +217,8 @@ module Google
217
217
  # @return [String]
218
218
  attr_accessor :name
219
219
 
220
- # Required. The number of nodes allocated to this cluster. More nodes enable
221
- # 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.
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. Must be
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.9.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 = "20211104"
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.9.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-12-06 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
@@ -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.9.0
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.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