google-apis-bigtableadmin_v2 0.61.0 → 0.62.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12f7a2319362549383453c87ab4c5f498267ec362b6467f8f01d75fa87f0285d
|
4
|
+
data.tar.gz: fc0782e2a9290b03eb68d831e102308127ed26e2150a9e77f2f87ca98759e67e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b978f8a0d49c651a9e47de8b0672e9b104f508406e573166a3276fcfa6e6cfe80a58fc7e294288bada0e2e32fb0ebb08891d949d15a22d37a965a980eb87b43
|
7
|
+
data.tar.gz: 9c140647d0182144fe88e7ae4a1f532bb58612e644f905b49b7bec335dfdddb3085f0ccd1cda829b7d05c3db0f298b1df4d2edd9804a8b7bdb877bb9f1a9a116
|
data/CHANGELOG.md
CHANGED
@@ -301,6 +301,11 @@ module Google
|
|
301
301
|
class Backup
|
302
302
|
include Google::Apis::Core::Hashable
|
303
303
|
|
304
|
+
# Indicates the backup type of the backup.
|
305
|
+
# Corresponds to the JSON property `backupType`
|
306
|
+
# @return [String]
|
307
|
+
attr_accessor :backup_type
|
308
|
+
|
304
309
|
# Encryption information for a given resource. If this resource is protected
|
305
310
|
# with customer managed encryption, the in-use Cloud Key Management Service (
|
306
311
|
# Cloud KMS) key version is specified along with its status.
|
@@ -322,6 +327,16 @@ module Google
|
|
322
327
|
# @return [String]
|
323
328
|
attr_accessor :expire_time
|
324
329
|
|
330
|
+
# The time at which the hot backup will be converted to a standard backup. Once
|
331
|
+
# the `hot_to_standard_time` has passed, Cloud Bigtable will convert the hot
|
332
|
+
# backup to a standard backup. This value must be greater than the backup
|
333
|
+
# creation time by: - At least 24 hours This field only applies for hot backups.
|
334
|
+
# When creating or updating a standard backup, attempting to set this field will
|
335
|
+
# fail the request.
|
336
|
+
# Corresponds to the JSON property `hotToStandardTime`
|
337
|
+
# @return [String]
|
338
|
+
attr_accessor :hot_to_standard_time
|
339
|
+
|
325
340
|
# A globally unique identifier for the backup which cannot be changed. Values
|
326
341
|
# are of the form `projects/`project`/instances/`instance`/clusters/`cluster`/
|
327
342
|
# backups/_a-zA-Z0-9*` The final segment of the name must be between 1 and 50
|
@@ -369,9 +384,11 @@ module Google
|
|
369
384
|
|
370
385
|
# Update properties of this object
|
371
386
|
def update!(**args)
|
387
|
+
@backup_type = args[:backup_type] if args.key?(:backup_type)
|
372
388
|
@encryption_info = args[:encryption_info] if args.key?(:encryption_info)
|
373
389
|
@end_time = args[:end_time] if args.key?(:end_time)
|
374
390
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
391
|
+
@hot_to_standard_time = args[:hot_to_standard_time] if args.key?(:hot_to_standard_time)
|
375
392
|
@name = args[:name] if args.key?(:name)
|
376
393
|
@size_bytes = args[:size_bytes] if args.key?(:size_bytes)
|
377
394
|
@source_backup = args[:source_backup] if args.key?(:source_backup)
|
@@ -2719,6 +2736,15 @@ module Google
|
|
2719
2736
|
# @return [Array<String>]
|
2720
2737
|
attr_accessor :cluster_ids
|
2721
2738
|
|
2739
|
+
# If enabled, the AFE will route the request based on the row key of the request,
|
2740
|
+
# rather than randomly. Instead, each row key will be assigned to a cluster,
|
2741
|
+
# and will stick to that cluster. If clusters are added or removed, then this
|
2742
|
+
# may affect which row keys stick to which clusters. To avoid this, users can
|
2743
|
+
# specify a group cluster.
|
2744
|
+
# Corresponds to the JSON property `rowAffinity`
|
2745
|
+
# @return [Google::Apis::BigtableadminV2::RowAffinity]
|
2746
|
+
attr_accessor :row_affinity
|
2747
|
+
|
2722
2748
|
def initialize(**args)
|
2723
2749
|
update!(**args)
|
2724
2750
|
end
|
@@ -2726,6 +2752,7 @@ module Google
|
|
2726
2752
|
# Update properties of this object
|
2727
2753
|
def update!(**args)
|
2728
2754
|
@cluster_ids = args[:cluster_ids] if args.key?(:cluster_ids)
|
2755
|
+
@row_affinity = args[:row_affinity] if args.key?(:row_affinity)
|
2729
2756
|
end
|
2730
2757
|
end
|
2731
2758
|
|
@@ -3135,6 +3162,23 @@ module Google
|
|
3135
3162
|
end
|
3136
3163
|
end
|
3137
3164
|
|
3165
|
+
# If enabled, the AFE will route the request based on the row key of the request,
|
3166
|
+
# rather than randomly. Instead, each row key will be assigned to a cluster,
|
3167
|
+
# and will stick to that cluster. If clusters are added or removed, then this
|
3168
|
+
# may affect which row keys stick to which clusters. To avoid this, users can
|
3169
|
+
# specify a group cluster.
|
3170
|
+
class RowAffinity
|
3171
|
+
include Google::Apis::Core::Hashable
|
3172
|
+
|
3173
|
+
def initialize(**args)
|
3174
|
+
update!(**args)
|
3175
|
+
end
|
3176
|
+
|
3177
|
+
# Update properties of this object
|
3178
|
+
def update!(**args)
|
3179
|
+
end
|
3180
|
+
end
|
3181
|
+
|
3138
3182
|
# Request message for `SetIamPolicy` method.
|
3139
3183
|
class SetIamPolicyRequest
|
3140
3184
|
include Google::Apis::Core::Hashable
|
@@ -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.62.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240904"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -580,6 +580,12 @@ module Google
|
|
580
580
|
include Google::Apis::Core::JsonObjectSupport
|
581
581
|
end
|
582
582
|
|
583
|
+
class RowAffinity
|
584
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
|
+
|
586
|
+
include Google::Apis::Core::JsonObjectSupport
|
587
|
+
end
|
588
|
+
|
583
589
|
class SetIamPolicyRequest
|
584
590
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
591
|
|
@@ -779,10 +785,12 @@ module Google
|
|
779
785
|
class Backup
|
780
786
|
# @private
|
781
787
|
class Representation < Google::Apis::Core::JsonRepresentation
|
788
|
+
property :backup_type, as: 'backupType'
|
782
789
|
property :encryption_info, as: 'encryptionInfo', class: Google::Apis::BigtableadminV2::EncryptionInfo, decorator: Google::Apis::BigtableadminV2::EncryptionInfo::Representation
|
783
790
|
|
784
791
|
property :end_time, as: 'endTime'
|
785
792
|
property :expire_time, as: 'expireTime'
|
793
|
+
property :hot_to_standard_time, as: 'hotToStandardTime'
|
786
794
|
property :name, as: 'name'
|
787
795
|
property :size_bytes, :numeric_string => true, as: 'sizeBytes'
|
788
796
|
property :source_backup, as: 'sourceBackup'
|
@@ -1456,6 +1464,8 @@ module Google
|
|
1456
1464
|
# @private
|
1457
1465
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1458
1466
|
collection :cluster_ids, as: 'clusterIds'
|
1467
|
+
property :row_affinity, as: 'rowAffinity', class: Google::Apis::BigtableadminV2::RowAffinity, decorator: Google::Apis::BigtableadminV2::RowAffinity::Representation
|
1468
|
+
|
1459
1469
|
end
|
1460
1470
|
end
|
1461
1471
|
|
@@ -1559,6 +1569,12 @@ module Google
|
|
1559
1569
|
end
|
1560
1570
|
end
|
1561
1571
|
|
1572
|
+
class RowAffinity
|
1573
|
+
# @private
|
1574
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1575
|
+
end
|
1576
|
+
end
|
1577
|
+
|
1562
1578
|
class SetIamPolicyRequest
|
1563
1579
|
# @private
|
1564
1580
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.62.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-09-
|
11
|
+
date: 2024-09-15 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.62.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: []
|