Skip to content

Commit 198017b

Browse files
feat: Automated regeneration of bigtableadmin v2 client (#16627)
Auto-created at 2023-11-05 10:49:01 +0000 using the toys pull request generator.
1 parent bafddd4 commit 198017b

File tree

5 files changed

+43
-2
lines changed

5 files changed

+43
-2
lines changed

api_names_out.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -39857,6 +39857,7 @@
3985739857
"/bigtableadmin:v2/ChangeStreamConfig/retentionPeriod": retention_period
3985839858
"/bigtableadmin:v2/CheckConsistencyRequest": check_consistency_request
3985939859
"/bigtableadmin:v2/CheckConsistencyRequest/consistencyToken": consistency_token
39860+
"/bigtableadmin:v2/CheckConsistencyRequest/standardReadRemoteWrites": standard_read_remote_writes
3986039861
"/bigtableadmin:v2/CheckConsistencyResponse": check_consistency_response
3986139862
"/bigtableadmin:v2/CheckConsistencyResponse/consistent": consistent
3986239863
"/bigtableadmin:v2/Cluster": cluster
@@ -40087,6 +40088,7 @@
4008740088
"/bigtableadmin:v2/Split/key": key
4008840089
"/bigtableadmin:v2/StandardIsolation": standard_isolation
4008940090
"/bigtableadmin:v2/StandardIsolation/priority": priority
40091+
"/bigtableadmin:v2/StandardReadRemoteWrites": standard_read_remote_writes
4009040092
"/bigtableadmin:v2/Status": status
4009140093
"/bigtableadmin:v2/Status/code": code
4009240094
"/bigtableadmin:v2/Status/details": details

generated/google-apis-bigtableadmin_v2/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-bigtableadmin_v2
22

3+
### v0.45.0 (2023-11-05)
4+
5+
* Regenerated from discovery document revision 20231029
6+
37
### v0.44.0 (2023-10-22)
48

59
* Regenerated from discovery document revision 20231013

generated/google-apis-bigtableadmin_v2/lib/google/apis/bigtableadmin_v2/classes.rb

+21
Original file line numberDiff line numberDiff line change
@@ -458,13 +458,20 @@ class CheckConsistencyRequest
458458
# @return [String]
459459
attr_accessor :consistency_token
460460

461+
# Checks that all writes before the consistency token was generated is
462+
# replicated in every cluster and readable.
463+
# Corresponds to the JSON property `standardReadRemoteWrites`
464+
# @return [Google::Apis::BigtableadminV2::StandardReadRemoteWrites]
465+
attr_accessor :standard_read_remote_writes
466+
461467
def initialize(**args)
462468
update!(**args)
463469
end
464470

465471
# Update properties of this object
466472
def update!(**args)
467473
@consistency_token = args[:consistency_token] if args.key?(:consistency_token)
474+
@standard_read_remote_writes = args[:standard_read_remote_writes] if args.key?(:standard_read_remote_writes)
468475
end
469476
end
470477

@@ -2333,6 +2340,20 @@ def update!(**args)
23332340
end
23342341
end
23352342

2343+
# Checks that all writes before the consistency token was generated is
2344+
# replicated in every cluster and readable.
2345+
class StandardReadRemoteWrites
2346+
include Google::Apis::Core::Hashable
2347+
2348+
def initialize(**args)
2349+
update!(**args)
2350+
end
2351+
2352+
# Update properties of this object
2353+
def update!(**args)
2354+
end
2355+
end
2356+
23362357
# The `Status` type defines a logical error model that is suitable for different
23372358
# programming environments, including REST APIs and RPC APIs. It is used by [
23382359
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of

generated/google-apis-bigtableadmin_v2/lib/google/apis/bigtableadmin_v2/gem_version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module BigtableadminV2
1818
# Version of the google-apis-bigtableadmin_v2 gem
19-
GEM_VERSION = "0.44.0"
19+
GEM_VERSION = "0.45.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.12.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20231013"
25+
REVISION = "20231029"
2626
end
2727
end
2828
end

generated/google-apis-bigtableadmin_v2/lib/google/apis/bigtableadmin_v2/representations.rb

+14
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
406406
include Google::Apis::Core::JsonObjectSupport
407407
end
408408

409+
class StandardReadRemoteWrites
410+
class Representation < Google::Apis::Core::JsonRepresentation; end
411+
412+
include Google::Apis::Core::JsonObjectSupport
413+
end
414+
409415
class Status
410416
class Representation < Google::Apis::Core::JsonRepresentation; end
411417

@@ -581,6 +587,8 @@ class CheckConsistencyRequest
581587
# @private
582588
class Representation < Google::Apis::Core::JsonRepresentation
583589
property :consistency_token, as: 'consistencyToken'
590+
property :standard_read_remote_writes, as: 'standardReadRemoteWrites', class: Google::Apis::BigtableadminV2::StandardReadRemoteWrites, decorator: Google::Apis::BigtableadminV2::StandardReadRemoteWrites::Representation
591+
584592
end
585593
end
586594

@@ -1096,6 +1104,12 @@ class Representation < Google::Apis::Core::JsonRepresentation
10961104
end
10971105
end
10981106

1107+
class StandardReadRemoteWrites
1108+
# @private
1109+
class Representation < Google::Apis::Core::JsonRepresentation
1110+
end
1111+
end
1112+
10991113
class Status
11001114
# @private
11011115
class Representation < Google::Apis::Core::JsonRepresentation

0 commit comments

Comments
 (0)