Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60639,6 +60639,7 @@
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeEnum/schemaBundleId": schema_bundle_id
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeFloat32": google_bigtable_admin_v2_type_float32
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeFloat64": google_bigtable_admin_v2_type_float64
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeGeography": google_bigtable_admin_v2_type_geography
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeInt64": google_bigtable_admin_v2_type_int64
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeInt64/encoding": encoding
"/bigtableadmin:v2/GoogleBigtableAdminV2TypeInt64Encoding": google_bigtable_admin_v2_type_int64_encoding
Expand Down Expand Up @@ -60903,6 +60904,7 @@
"/bigtableadmin:v2/Type/enumType": enum_type
"/bigtableadmin:v2/Type/float32Type": float32_type
"/bigtableadmin:v2/Type/float64Type": float64_type
"/bigtableadmin:v2/Type/geographyType": geography_type
"/bigtableadmin:v2/Type/int64Type": int64_type
"/bigtableadmin:v2/Type/mapType": map_type
"/bigtableadmin:v2/Type/protoType": proto_type
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-bigtableadmin_v2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-bigtableadmin_v2

### v0.82.0 (2026-02-15)

* Regenerated from discovery document revision 20260210

### v0.81.0 (2025-12-21)

* Regenerated from discovery document revision 20251209
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2144,6 +2144,20 @@ def update!(**args)
end
end

# A geography type, representing a point or region on Earth. The value is stored
# in `Value.bytes_value` as Well-Known Binary (WKB) bytes.
class GoogleBigtableAdminV2TypeGeography
include Google::Apis::Core::Hashable

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
end
end

# Int64 Values of type `Int64` are stored in `Value.int_value`.
class GoogleBigtableAdminV2TypeInt64
include Google::Apis::Core::Hashable
Expand Down Expand Up @@ -4424,6 +4438,12 @@ class Type
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat64]
attr_accessor :float64_type

# A geography type, representing a point or region on Earth. The value is stored
# in `Value.bytes_value` as Well-Known Binary (WKB) bytes.
# Corresponds to the JSON property `geographyType`
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeGeography]
attr_accessor :geography_type

# Int64 Values of type `Int64` are stored in `Value.int_value`.
# Corresponds to the JSON property `int64Type`
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64]
Expand Down Expand Up @@ -4476,6 +4496,7 @@ def update!(**args)
@enum_type = args[:enum_type] if args.key?(:enum_type)
@float32_type = args[:float32_type] if args.key?(:float32_type)
@float64_type = args[:float64_type] if args.key?(:float64_type)
@geography_type = args[:geography_type] if args.key?(:geography_type)
@int64_type = args[:int64_type] if args.key?(:int64_type)
@map_type = args[:map_type] if args.key?(:map_type)
@proto_type = args[:proto_type] if args.key?(:proto_type)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module BigtableadminV2
# Version of the google-apis-bigtableadmin_v2 gem
GEM_VERSION = "0.81.0"
GEM_VERSION = "0.82.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20251209"
REVISION = "20260210"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end

class GoogleBigtableAdminV2TypeGeography
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class GoogleBigtableAdminV2TypeInt64
class Representation < Google::Apis::Core::JsonRepresentation; end

Expand Down Expand Up @@ -1449,6 +1455,12 @@ class Representation < Google::Apis::Core::JsonRepresentation
end
end

class GoogleBigtableAdminV2TypeGeography
# @private
class Representation < Google::Apis::Core::JsonRepresentation
end
end

class GoogleBigtableAdminV2TypeInt64
# @private
class Representation < Google::Apis::Core::JsonRepresentation
Expand Down Expand Up @@ -2069,6 +2081,8 @@ class Representation < Google::Apis::Core::JsonRepresentation

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

property :geography_type, as: 'geographyType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeGeography, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeGeography::Representation

property :int64_type, as: 'int64Type', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64::Representation

property :map_type, as: 'mapType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeMap, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeMap::Representation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3016,7 +3016,11 @@ def test_schema_bundle_iam_permissions(resource, test_iam_permissions_request_ob
execute_or_queue_command(command, &block)
end

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