google-apis-bigtableadmin_v2 0.37.0 → 0.39.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: 396f139374fa74ba7868674ac19ff703a3d8f5a46b3276d5c442bae2226dc650
|
4
|
+
data.tar.gz: 6f10a46d3cef47cd0b51bc80aba07a6dab0110b8e712c8c1b0cfc3cd5f52d2e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 505723412f07f2a19df36a8d1a386f9a24903a856fe3d0bf216f0bc6ee7f3b5d6192cd7fd8055173680cb95d67532671e99154c294fc51baacbc51751d9d6f70
|
7
|
+
data.tar.gz: f33094b1eec9fe43be27e75170fad3c41f35f39062f7b8884982967bcb70bc81c05e5a39db4685512251d5dedbecf6b02df20a7b8a5fb421537cfb5551fa7a95
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-bigtableadmin_v2
|
2
2
|
|
3
|
+
### v0.39.0 (2023-07-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230713
|
6
|
+
|
7
|
+
### v0.38.0 (2023-07-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230622
|
10
|
+
|
3
11
|
### v0.37.0 (2023-05-28)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230517
|
@@ -223,7 +223,7 @@ module Google
|
|
223
223
|
attr_accessor :end_time
|
224
224
|
|
225
225
|
# Required. The expiration time of the backup, with microseconds granularity
|
226
|
-
# that must be at least 6 hours and at most
|
226
|
+
# that must be at least 6 hours and at most 90 days from the time the request is
|
227
227
|
# received. Once the `expire_time` has passed, Cloud Bigtable will delete the
|
228
228
|
# backup and free the resources used by the backup.
|
229
229
|
# Corresponds to the JSON property `expireTime`
|
@@ -412,6 +412,28 @@ module Google
|
|
412
412
|
end
|
413
413
|
end
|
414
414
|
|
415
|
+
# Change stream configuration.
|
416
|
+
class ChangeStreamConfig
|
417
|
+
include Google::Apis::Core::Hashable
|
418
|
+
|
419
|
+
# How long the change stream should be retained. Change stream data older than
|
420
|
+
# the retention period will not be returned when reading the change stream from
|
421
|
+
# the table. Values must be at least 1 day and at most 7 days, and will be
|
422
|
+
# truncated to microsecond granularity.
|
423
|
+
# Corresponds to the JSON property `retentionPeriod`
|
424
|
+
# @return [String]
|
425
|
+
attr_accessor :retention_period
|
426
|
+
|
427
|
+
def initialize(**args)
|
428
|
+
update!(**args)
|
429
|
+
end
|
430
|
+
|
431
|
+
# Update properties of this object
|
432
|
+
def update!(**args)
|
433
|
+
@retention_period = args[:retention_period] if args.key?(:retention_period)
|
434
|
+
end
|
435
|
+
end
|
436
|
+
|
415
437
|
# Request message for google.bigtable.admin.v2.BigtableTableAdmin.
|
416
438
|
# CheckConsistency
|
417
439
|
class CheckConsistencyRequest
|
@@ -2328,6 +2350,11 @@ module Google
|
|
2328
2350
|
class Table
|
2329
2351
|
include Google::Apis::Core::Hashable
|
2330
2352
|
|
2353
|
+
# Change stream configuration.
|
2354
|
+
# Corresponds to the JSON property `changeStreamConfig`
|
2355
|
+
# @return [Google::Apis::BigtableadminV2::ChangeStreamConfig]
|
2356
|
+
attr_accessor :change_stream_config
|
2357
|
+
|
2331
2358
|
# Output only. Map from cluster ID to per-cluster table state. If it could not
|
2332
2359
|
# be determined whether or not the table has data in a particular cluster (for
|
2333
2360
|
# example, if its zone is unavailable), then there will be an entry for the
|
@@ -2388,6 +2415,7 @@ module Google
|
|
2388
2415
|
|
2389
2416
|
# Update properties of this object
|
2390
2417
|
def update!(**args)
|
2418
|
+
@change_stream_config = args[:change_stream_config] if args.key?(:change_stream_config)
|
2391
2419
|
@cluster_states = args[:cluster_states] if args.key?(:cluster_states)
|
2392
2420
|
@column_families = args[:column_families] if args.key?(:column_families)
|
2393
2421
|
@deletion_protection = args[:deletion_protection] if args.key?(:deletion_protection)
|
@@ -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.39.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230713"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class ChangeStreamConfig
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
73
79
|
class CheckConsistencyRequest
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
81
|
|
@@ -555,6 +561,13 @@ module Google
|
|
555
561
|
end
|
556
562
|
end
|
557
563
|
|
564
|
+
class ChangeStreamConfig
|
565
|
+
# @private
|
566
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
567
|
+
property :retention_period, as: 'retentionPeriod'
|
568
|
+
end
|
569
|
+
end
|
570
|
+
|
558
571
|
class CheckConsistencyRequest
|
559
572
|
# @private
|
560
573
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1080,6 +1093,8 @@ module Google
|
|
1080
1093
|
class Table
|
1081
1094
|
# @private
|
1082
1095
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1096
|
+
property :change_stream_config, as: 'changeStreamConfig', class: Google::Apis::BigtableadminV2::ChangeStreamConfig, decorator: Google::Apis::BigtableadminV2::ChangeStreamConfig::Representation
|
1097
|
+
|
1083
1098
|
hash :cluster_states, as: 'clusterStates', class: Google::Apis::BigtableadminV2::ClusterState, decorator: Google::Apis::BigtableadminV2::ClusterState::Representation
|
1084
1099
|
|
1085
1100
|
hash :column_families, as: 'columnFamilies', class: Google::Apis::BigtableadminV2::ColumnFamily, decorator: Google::Apis::BigtableadminV2::ColumnFamily::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.39.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: 2023-
|
11
|
+
date: 2023-07-23 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.39.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: []
|