Skip to content

Commit d5c5662

Browse files
feat: Automated regeneration of bigtableadmin v2 client (googleapis#25752)
Auto-created at 2026-02-15 11:10:41 +0000 using the toys pull request generator.
1 parent c3fdcd5 commit d5c5662

6 files changed

Lines changed: 48 additions & 3 deletions

File tree

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60658,6 +60658,7 @@
6065860658
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeEnum/schemaBundleId": schema_bundle_id
6065960659
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeFloat32": google_bigtable_admin_v2_type_float32
6066060660
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeFloat64": google_bigtable_admin_v2_type_float64
60661+
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeGeography": google_bigtable_admin_v2_type_geography
6066160662
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeInt64": google_bigtable_admin_v2_type_int64
6066260663
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeInt64/encoding": encoding
6066360664
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeInt64Encoding": google_bigtable_admin_v2_type_int64_encoding
@@ -60922,6 +60923,7 @@
6092260923
"/bigtableadmin:v2/Type/enumType": enum_type
6092360924
"/bigtableadmin:v2/Type/float32Type": float32_type
6092460925
"/bigtableadmin:v2/Type/float64Type": float64_type
60926+
"/bigtableadmin:v2/Type/geographyType": geography_type
6092560927
"/bigtableadmin:v2/Type/int64Type": int64_type
6092660928
"/bigtableadmin:v2/Type/mapType": map_type
6092760929
"/bigtableadmin:v2/Type/protoType": proto_type

generated/google-apis-bigtableadmin_v2/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-bigtableadmin_v2
22

3+
### v0.82.0 (2026-02-15)
4+
5+
* Regenerated from discovery document revision 20260210
6+
37
### v0.81.0 (2025-12-21)
48

59
* Regenerated from discovery document revision 20251209

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2144,6 +2144,20 @@ def update!(**args)
21442144
end
21452145
end
21462146

2147+
# A geography type, representing a point or region on Earth. The value is stored
2148+
# in `Value.bytes_value` as Well-Known Binary (WKB) bytes.
2149+
class GoogleBigtableAdminV2TypeGeography
2150+
include Google::Apis::Core::Hashable
2151+
2152+
def initialize(**args)
2153+
update!(**args)
2154+
end
2155+
2156+
# Update properties of this object
2157+
def update!(**args)
2158+
end
2159+
end
2160+
21472161
# Int64 Values of type `Int64` are stored in `Value.int_value`.
21482162
class GoogleBigtableAdminV2TypeInt64
21492163
include Google::Apis::Core::Hashable
@@ -4424,6 +4438,12 @@ class Type
44244438
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat64]
44254439
attr_accessor :float64_type
44264440

4441+
# A geography type, representing a point or region on Earth. The value is stored
4442+
# in `Value.bytes_value` as Well-Known Binary (WKB) bytes.
4443+
# Corresponds to the JSON property `geographyType`
4444+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeGeography]
4445+
attr_accessor :geography_type
4446+
44274447
# Int64 Values of type `Int64` are stored in `Value.int_value`.
44284448
# Corresponds to the JSON property `int64Type`
44294449
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64]
@@ -4476,6 +4496,7 @@ def update!(**args)
44764496
@enum_type = args[:enum_type] if args.key?(:enum_type)
44774497
@float32_type = args[:float32_type] if args.key?(:float32_type)
44784498
@float64_type = args[:float64_type] if args.key?(:float64_type)
4499+
@geography_type = args[:geography_type] if args.key?(:geography_type)
44794500
@int64_type = args[:int64_type] if args.key?(:int64_type)
44804501
@map_type = args[:map_type] if args.key?(:map_type)
44814502
@proto_type = args[:proto_type] if args.key?(:proto_type)

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

Lines changed: 2 additions & 2 deletions
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.81.0"
19+
GEM_VERSION = "0.82.0"
2020

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

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

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
400400
include Google::Apis::Core::JsonObjectSupport
401401
end
402402

403+
class GoogleBigtableAdminV2TypeGeography
404+
class Representation < Google::Apis::Core::JsonRepresentation; end
405+
406+
include Google::Apis::Core::JsonObjectSupport
407+
end
408+
403409
class GoogleBigtableAdminV2TypeInt64
404410
class Representation < Google::Apis::Core::JsonRepresentation; end
405411

@@ -1449,6 +1455,12 @@ class Representation < Google::Apis::Core::JsonRepresentation
14491455
end
14501456
end
14511457

1458+
class GoogleBigtableAdminV2TypeGeography
1459+
# @private
1460+
class Representation < Google::Apis::Core::JsonRepresentation
1461+
end
1462+
end
1463+
14521464
class GoogleBigtableAdminV2TypeInt64
14531465
# @private
14541466
class Representation < Google::Apis::Core::JsonRepresentation
@@ -2069,6 +2081,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
20692081

20702082
property :float64_type, as: 'float64Type', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat64, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat64::Representation
20712083

2084+
property :geography_type, as: 'geographyType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeGeography, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeGeography::Representation
2085+
20722086
property :int64_type, as: 'int64Type', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64::Representation
20732087

20742088
property :map_type, as: 'mapType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeMap, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeMap::Representation

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3016,7 +3016,11 @@ def test_schema_bundle_iam_permissions(resource, test_iam_permissions_request_ob
30163016
execute_or_queue_command(command, &block)
30173017
end
30183018

3019-
# Lists information about the supported locations for this service.
3019+
# Lists information about the supported locations for this service. This method
3020+
# can be called in two ways: * **List all public locations:** Use the path `GET /
3021+
# v1/locations`. * **List project-visible locations:** Use the path `GET /v1/
3022+
# projects/`project_id`/locations`. This may include public locations as well as
3023+
# private or other locations specifically visible to the project.
30203024
# @param [String] name
30213025
# The resource that owns the locations collection, if applicable.
30223026
# @param [Array<String>, String] extra_location_types

0 commit comments

Comments
 (0)