google-apis-bigtableadmin_v2 0.48.0 → 0.49.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: 264c020b19789b710c04cf0941013f18d779318a8bb1f5fb65b41875bcae21cc
|
4
|
+
data.tar.gz: 3f09d9768bffef1e70a44b0e329f52a59f86bb23a05d902c78fe521069aa2847
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f1d5848d8ad8c4fbd6b1d27872b8d598034fb85a4b944132a8ebfd099fca856d846f90c21498bd232a431ac5bd41e0c636583d44d7f81b4c530b1c85a43a128
|
7
|
+
data.tar.gz: c582d3596cbf920d57abb7d647d9ee1ae17e08a3d9cf6f151cc2bbf4ac3c62a9052fa42e61c935a069dc539feaa5db3542e731a897399912400fc5a36bb2d9c9
|
data/CHANGELOG.md
CHANGED
@@ -163,6 +163,33 @@ module Google
|
|
163
163
|
end
|
164
164
|
end
|
165
165
|
|
166
|
+
# Defines an automated backup policy for a table
|
167
|
+
class AutomatedBackupPolicy
|
168
|
+
include Google::Apis::Core::Hashable
|
169
|
+
|
170
|
+
# Required. How frequently automated backups should occur. The only supported
|
171
|
+
# value at this time is 24 hours.
|
172
|
+
# Corresponds to the JSON property `frequency`
|
173
|
+
# @return [String]
|
174
|
+
attr_accessor :frequency
|
175
|
+
|
176
|
+
# Required. How long the automated backups should be retained. The only
|
177
|
+
# supported value at this time is 3 days.
|
178
|
+
# Corresponds to the JSON property `retentionPeriod`
|
179
|
+
# @return [String]
|
180
|
+
attr_accessor :retention_period
|
181
|
+
|
182
|
+
def initialize(**args)
|
183
|
+
update!(**args)
|
184
|
+
end
|
185
|
+
|
186
|
+
# Update properties of this object
|
187
|
+
def update!(**args)
|
188
|
+
@frequency = args[:frequency] if args.key?(:frequency)
|
189
|
+
@retention_period = args[:retention_period] if args.key?(:retention_period)
|
190
|
+
end
|
191
|
+
end
|
192
|
+
|
166
193
|
# Limits for the number of nodes a Cluster can autoscale up/down to.
|
167
194
|
class AutoscalingLimits
|
168
195
|
include Google::Apis::Core::Hashable
|
@@ -1770,6 +1797,13 @@ module Google
|
|
1770
1797
|
# @return [Google::Apis::BigtableadminV2::ColumnFamily]
|
1771
1798
|
attr_accessor :update
|
1772
1799
|
|
1800
|
+
# Optional. A mask specifying which fields (e.g. `gc_rule`) in the `update` mod
|
1801
|
+
# should be updated, ignored for other modification types. If unset or empty, we
|
1802
|
+
# treat it as updating `gc_rule` to be backward compatible.
|
1803
|
+
# Corresponds to the JSON property `updateMask`
|
1804
|
+
# @return [String]
|
1805
|
+
attr_accessor :update_mask
|
1806
|
+
|
1773
1807
|
def initialize(**args)
|
1774
1808
|
update!(**args)
|
1775
1809
|
end
|
@@ -1780,6 +1814,7 @@ module Google
|
|
1780
1814
|
@drop = args[:drop] if args.key?(:drop)
|
1781
1815
|
@id = args[:id] if args.key?(:id)
|
1782
1816
|
@update = args[:update] if args.key?(:update)
|
1817
|
+
@update_mask = args[:update_mask] if args.key?(:update_mask)
|
1783
1818
|
end
|
1784
1819
|
end
|
1785
1820
|
|
@@ -2409,6 +2444,11 @@ module Google
|
|
2409
2444
|
class Table
|
2410
2445
|
include Google::Apis::Core::Hashable
|
2411
2446
|
|
2447
|
+
# Defines an automated backup policy for a table
|
2448
|
+
# Corresponds to the JSON property `automatedBackupPolicy`
|
2449
|
+
# @return [Google::Apis::BigtableadminV2::AutomatedBackupPolicy]
|
2450
|
+
attr_accessor :automated_backup_policy
|
2451
|
+
|
2412
2452
|
# Change stream configuration.
|
2413
2453
|
# Corresponds to the JSON property `changeStreamConfig`
|
2414
2454
|
# @return [Google::Apis::BigtableadminV2::ChangeStreamConfig]
|
@@ -2474,6 +2514,7 @@ module Google
|
|
2474
2514
|
|
2475
2515
|
# Update properties of this object
|
2476
2516
|
def update!(**args)
|
2517
|
+
@automated_backup_policy = args[:automated_backup_policy] if args.key?(:automated_backup_policy)
|
2477
2518
|
@change_stream_config = args[:change_stream_config] if args.key?(:change_stream_config)
|
2478
2519
|
@cluster_states = args[:cluster_states] if args.key?(:cluster_states)
|
2479
2520
|
@column_families = args[:column_families] if args.key?(:column_families)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BigtableadminV2
|
18
18
|
# Version of the google-apis-bigtableadmin_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.49.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240225"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,12 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class AutomatedBackupPolicy
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
43
49
|
class AutoscalingLimits
|
44
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
51
|
|
@@ -517,6 +523,14 @@ module Google
|
|
517
523
|
end
|
518
524
|
end
|
519
525
|
|
526
|
+
class AutomatedBackupPolicy
|
527
|
+
# @private
|
528
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
529
|
+
property :frequency, as: 'frequency'
|
530
|
+
property :retention_period, as: 'retentionPeriod'
|
531
|
+
end
|
532
|
+
end
|
533
|
+
|
520
534
|
class AutoscalingLimits
|
521
535
|
# @private
|
522
536
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -947,6 +961,7 @@ module Google
|
|
947
961
|
property :id, as: 'id'
|
948
962
|
property :update, as: 'update', class: Google::Apis::BigtableadminV2::ColumnFamily, decorator: Google::Apis::BigtableadminV2::ColumnFamily::Representation
|
949
963
|
|
964
|
+
property :update_mask, as: 'updateMask'
|
950
965
|
end
|
951
966
|
end
|
952
967
|
|
@@ -1109,6 +1124,8 @@ module Google
|
|
1109
1124
|
class Table
|
1110
1125
|
# @private
|
1111
1126
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1127
|
+
property :automated_backup_policy, as: 'automatedBackupPolicy', class: Google::Apis::BigtableadminV2::AutomatedBackupPolicy, decorator: Google::Apis::BigtableadminV2::AutomatedBackupPolicy::Representation
|
1128
|
+
|
1112
1129
|
property :change_stream_config, as: 'changeStreamConfig', class: Google::Apis::BigtableadminV2::ChangeStreamConfig, decorator: Google::Apis::BigtableadminV2::ChangeStreamConfig::Representation
|
1113
1130
|
|
1114
1131
|
hash :cluster_states, as: 'clusterStates', class: Google::Apis::BigtableadminV2::ClusterState, decorator: Google::Apis::BigtableadminV2::ClusterState::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-bigtableadmin_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.49.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: 2024-
|
11
|
+
date: 2024-03-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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.49.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigtableadmin_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|