google-apis-bigtableadmin_v2 0.61.0 → 0.63.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: 9b7f56da6a6fd562a762cd0122926a2d16b100adb8f82d8ac163d20910f534d9
|
4
|
+
data.tar.gz: cacbb3ad35d494902e65069e386f7ac27e97112f8e2a27af2911acecad2b829e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3d8073295e35875f8c1b87171c1edf56a512c5aabec488d9fe158d04992b80b6e01fdfd26e64a036f6e286f7cdc85d9068d52f06d4d077be3b32545b1c93cf2
|
7
|
+
data.tar.gz: ff89ecf7dd0949bc68aa8349506292d578542bc09c21be5f7054fcbe22ae714f401f302639ea41c27a29d370e03fbdd4e64eb839db3d6427e6e3b982b4e25dd7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-bigtableadmin_v2
|
2
2
|
|
3
|
+
### v0.63.0 (2024-09-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240918
|
6
|
+
|
7
|
+
### v0.62.0 (2024-09-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240904
|
10
|
+
|
3
11
|
### v0.61.0 (2024-09-01)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240824
|
@@ -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)
|
@@ -642,6 +659,11 @@ module Google
|
|
642
659
|
# @return [String]
|
643
660
|
attr_accessor :name
|
644
661
|
|
662
|
+
# Immutable. The node scaling factor of this cluster.
|
663
|
+
# Corresponds to the JSON property `nodeScalingFactor`
|
664
|
+
# @return [String]
|
665
|
+
attr_accessor :node_scaling_factor
|
666
|
+
|
645
667
|
# The number of nodes in the cluster. If no value is set, Cloud Bigtable
|
646
668
|
# automatically allocates nodes based on your data footprint and optimized for
|
647
669
|
# 50% storage utilization.
|
@@ -665,6 +687,7 @@ module Google
|
|
665
687
|
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
666
688
|
@location = args[:location] if args.key?(:location)
|
667
689
|
@name = args[:name] if args.key?(:name)
|
690
|
+
@node_scaling_factor = args[:node_scaling_factor] if args.key?(:node_scaling_factor)
|
668
691
|
@serve_nodes = args[:serve_nodes] if args.key?(:serve_nodes)
|
669
692
|
@state = args[:state] if args.key?(:state)
|
670
693
|
end
|
@@ -2719,6 +2742,19 @@ module Google
|
|
2719
2742
|
# @return [Array<String>]
|
2720
2743
|
attr_accessor :cluster_ids
|
2721
2744
|
|
2745
|
+
# If enabled, Bigtable will route the request based on the row key of the
|
2746
|
+
# request, rather than randomly. Instead, each row key will be assigned to a
|
2747
|
+
# cluster, and will stick to that cluster. If clusters are added or removed,
|
2748
|
+
# then this may affect which row keys stick to which clusters. To avoid this,
|
2749
|
+
# users can use a cluster group to specify which clusters are to be used. In
|
2750
|
+
# this case, new clusters that are not a part of the cluster group will not be
|
2751
|
+
# routed to, and routing will be unaffected by the new cluster. Moreover,
|
2752
|
+
# clusters specified in the cluster group cannot be deleted unless removed from
|
2753
|
+
# the cluster group.
|
2754
|
+
# Corresponds to the JSON property `rowAffinity`
|
2755
|
+
# @return [Google::Apis::BigtableadminV2::RowAffinity]
|
2756
|
+
attr_accessor :row_affinity
|
2757
|
+
|
2722
2758
|
def initialize(**args)
|
2723
2759
|
update!(**args)
|
2724
2760
|
end
|
@@ -2726,6 +2762,7 @@ module Google
|
|
2726
2762
|
# Update properties of this object
|
2727
2763
|
def update!(**args)
|
2728
2764
|
@cluster_ids = args[:cluster_ids] if args.key?(:cluster_ids)
|
2765
|
+
@row_affinity = args[:row_affinity] if args.key?(:row_affinity)
|
2729
2766
|
end
|
2730
2767
|
end
|
2731
2768
|
|
@@ -3135,6 +3172,27 @@ module Google
|
|
3135
3172
|
end
|
3136
3173
|
end
|
3137
3174
|
|
3175
|
+
# If enabled, Bigtable will route the request based on the row key of the
|
3176
|
+
# request, rather than randomly. Instead, each row key will be assigned to a
|
3177
|
+
# cluster, and will stick to that cluster. If clusters are added or removed,
|
3178
|
+
# then this may affect which row keys stick to which clusters. To avoid this,
|
3179
|
+
# users can use a cluster group to specify which clusters are to be used. In
|
3180
|
+
# this case, new clusters that are not a part of the cluster group will not be
|
3181
|
+
# routed to, and routing will be unaffected by the new cluster. Moreover,
|
3182
|
+
# clusters specified in the cluster group cannot be deleted unless removed from
|
3183
|
+
# the cluster group.
|
3184
|
+
class RowAffinity
|
3185
|
+
include Google::Apis::Core::Hashable
|
3186
|
+
|
3187
|
+
def initialize(**args)
|
3188
|
+
update!(**args)
|
3189
|
+
end
|
3190
|
+
|
3191
|
+
# Update properties of this object
|
3192
|
+
def update!(**args)
|
3193
|
+
end
|
3194
|
+
end
|
3195
|
+
|
3138
3196
|
# Request message for `SetIamPolicy` method.
|
3139
3197
|
class SetIamPolicyRequest
|
3140
3198
|
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.63.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 = "20240918"
|
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'
|
@@ -848,6 +856,7 @@ module Google
|
|
848
856
|
|
849
857
|
property :location, as: 'location'
|
850
858
|
property :name, as: 'name'
|
859
|
+
property :node_scaling_factor, as: 'nodeScalingFactor'
|
851
860
|
property :serve_nodes, as: 'serveNodes'
|
852
861
|
property :state, as: 'state'
|
853
862
|
end
|
@@ -1456,6 +1465,8 @@ module Google
|
|
1456
1465
|
# @private
|
1457
1466
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1458
1467
|
collection :cluster_ids, as: 'clusterIds'
|
1468
|
+
property :row_affinity, as: 'rowAffinity', class: Google::Apis::BigtableadminV2::RowAffinity, decorator: Google::Apis::BigtableadminV2::RowAffinity::Representation
|
1469
|
+
|
1459
1470
|
end
|
1460
1471
|
end
|
1461
1472
|
|
@@ -1559,6 +1570,12 @@ module Google
|
|
1559
1570
|
end
|
1560
1571
|
end
|
1561
1572
|
|
1573
|
+
class RowAffinity
|
1574
|
+
# @private
|
1575
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1576
|
+
end
|
1577
|
+
end
|
1578
|
+
|
1562
1579
|
class SetIamPolicyRequest
|
1563
1580
|
# @private
|
1564
1581
|
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.63.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-29 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.63.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: []
|