google-apis-bigtableadmin_v2 0.73.0 → 0.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7394928364ab0a501b9a132ad377d003aa3bf6737c9001e78615bba7eab178c1
|
4
|
+
data.tar.gz: bc0e6025bca797a84fbee502dcc200e6dfb9fb9f3c8bd3058bb7e1c7924bf166
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f915f3dad7b350f43675a6f758a4d6e7b68baca15bdbcf6749b4edab391847a122bd25add02623afb7b7f8883c4e9f3c89dc9406807e2189fcabe24322581784
|
7
|
+
data.tar.gz: 57604e9cd1572901e4efc4d830f63b304ef47be7124e1379a9667542c6f1f7785fc321ac68398f0562004976275c539fc416d3727aabab81c75a17b395d20e7e
|
data/CHANGELOG.md
CHANGED
@@ -2035,6 +2035,32 @@ module Google
|
|
2035
2035
|
end
|
2036
2036
|
end
|
2037
2037
|
|
2038
|
+
# A protobuf enum type. Values of type `Enum` are stored in `Value.int_value`.
|
2039
|
+
class GoogleBigtableAdminV2TypeEnum
|
2040
|
+
include Google::Apis::Core::Hashable
|
2041
|
+
|
2042
|
+
# The fully qualified name of the protobuf enum message, including package. In
|
2043
|
+
# the format of "foo.bar.EnumMessage".
|
2044
|
+
# Corresponds to the JSON property `enumName`
|
2045
|
+
# @return [String]
|
2046
|
+
attr_accessor :enum_name
|
2047
|
+
|
2048
|
+
# The ID of the schema bundle that this enum is defined in.
|
2049
|
+
# Corresponds to the JSON property `schemaBundleId`
|
2050
|
+
# @return [String]
|
2051
|
+
attr_accessor :schema_bundle_id
|
2052
|
+
|
2053
|
+
def initialize(**args)
|
2054
|
+
update!(**args)
|
2055
|
+
end
|
2056
|
+
|
2057
|
+
# Update properties of this object
|
2058
|
+
def update!(**args)
|
2059
|
+
@enum_name = args[:enum_name] if args.key?(:enum_name)
|
2060
|
+
@schema_bundle_id = args[:schema_bundle_id] if args.key?(:schema_bundle_id)
|
2061
|
+
end
|
2062
|
+
end
|
2063
|
+
|
2038
2064
|
# Float32 Values of type `Float32` are stored in `Value.float_value`.
|
2039
2065
|
class GoogleBigtableAdminV2TypeFloat32
|
2040
2066
|
include Google::Apis::Core::Hashable
|
@@ -2207,6 +2233,33 @@ module Google
|
|
2207
2233
|
end
|
2208
2234
|
end
|
2209
2235
|
|
2236
|
+
# A protobuf message type. Values of type `Proto` are stored in `Value.
|
2237
|
+
# bytes_value`.
|
2238
|
+
class GoogleBigtableAdminV2TypeProto
|
2239
|
+
include Google::Apis::Core::Hashable
|
2240
|
+
|
2241
|
+
# The fully qualified name of the protobuf message, including package. In the
|
2242
|
+
# format of "foo.bar.Message".
|
2243
|
+
# Corresponds to the JSON property `messageName`
|
2244
|
+
# @return [String]
|
2245
|
+
attr_accessor :message_name
|
2246
|
+
|
2247
|
+
# The ID of the schema bundle that this proto is defined in.
|
2248
|
+
# Corresponds to the JSON property `schemaBundleId`
|
2249
|
+
# @return [String]
|
2250
|
+
attr_accessor :schema_bundle_id
|
2251
|
+
|
2252
|
+
def initialize(**args)
|
2253
|
+
update!(**args)
|
2254
|
+
end
|
2255
|
+
|
2256
|
+
# Update properties of this object
|
2257
|
+
def update!(**args)
|
2258
|
+
@message_name = args[:message_name] if args.key?(:message_name)
|
2259
|
+
@schema_bundle_id = args[:schema_bundle_id] if args.key?(:schema_bundle_id)
|
2260
|
+
end
|
2261
|
+
end
|
2262
|
+
|
2210
2263
|
# String Values of type `String` are stored in `Value.string_value`.
|
2211
2264
|
class GoogleBigtableAdminV2TypeString
|
2212
2265
|
include Google::Apis::Core::Hashable
|
@@ -4245,6 +4298,11 @@ module Google
|
|
4245
4298
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeDate]
|
4246
4299
|
attr_accessor :date_type
|
4247
4300
|
|
4301
|
+
# A protobuf enum type. Values of type `Enum` are stored in `Value.int_value`.
|
4302
|
+
# Corresponds to the JSON property `enumType`
|
4303
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeEnum]
|
4304
|
+
attr_accessor :enum_type
|
4305
|
+
|
4248
4306
|
# Float32 Values of type `Float32` are stored in `Value.float_value`.
|
4249
4307
|
# Corresponds to the JSON property `float32Type`
|
4250
4308
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat32]
|
@@ -4270,6 +4328,12 @@ module Google
|
|
4270
4328
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeMap]
|
4271
4329
|
attr_accessor :map_type
|
4272
4330
|
|
4331
|
+
# A protobuf message type. Values of type `Proto` are stored in `Value.
|
4332
|
+
# bytes_value`.
|
4333
|
+
# Corresponds to the JSON property `protoType`
|
4334
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeProto]
|
4335
|
+
attr_accessor :proto_type
|
4336
|
+
|
4273
4337
|
# String Values of type `String` are stored in `Value.string_value`.
|
4274
4338
|
# Corresponds to the JSON property `stringType`
|
4275
4339
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeString]
|
@@ -4298,10 +4362,12 @@ module Google
|
|
4298
4362
|
@bool_type = args[:bool_type] if args.key?(:bool_type)
|
4299
4363
|
@bytes_type = args[:bytes_type] if args.key?(:bytes_type)
|
4300
4364
|
@date_type = args[:date_type] if args.key?(:date_type)
|
4365
|
+
@enum_type = args[:enum_type] if args.key?(:enum_type)
|
4301
4366
|
@float32_type = args[:float32_type] if args.key?(:float32_type)
|
4302
4367
|
@float64_type = args[:float64_type] if args.key?(:float64_type)
|
4303
4368
|
@int64_type = args[:int64_type] if args.key?(:int64_type)
|
4304
4369
|
@map_type = args[:map_type] if args.key?(:map_type)
|
4370
|
+
@proto_type = args[:proto_type] if args.key?(:proto_type)
|
4305
4371
|
@string_type = args[:string_type] if args.key?(:string_type)
|
4306
4372
|
@struct_type = args[:struct_type] if args.key?(:struct_type)
|
4307
4373
|
@timestamp_type = args[:timestamp_type] if args.key?(:timestamp_type)
|
@@ -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.74.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250724"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -376,6 +376,12 @@ module Google
|
|
376
376
|
include Google::Apis::Core::JsonObjectSupport
|
377
377
|
end
|
378
378
|
|
379
|
+
class GoogleBigtableAdminV2TypeEnum
|
380
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
|
+
|
382
|
+
include Google::Apis::Core::JsonObjectSupport
|
383
|
+
end
|
384
|
+
|
379
385
|
class GoogleBigtableAdminV2TypeFloat32
|
380
386
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
387
|
|
@@ -418,6 +424,12 @@ module Google
|
|
418
424
|
include Google::Apis::Core::JsonObjectSupport
|
419
425
|
end
|
420
426
|
|
427
|
+
class GoogleBigtableAdminV2TypeProto
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
421
433
|
class GoogleBigtableAdminV2TypeString
|
422
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
435
|
|
@@ -1398,6 +1410,14 @@ module Google
|
|
1398
1410
|
end
|
1399
1411
|
end
|
1400
1412
|
|
1413
|
+
class GoogleBigtableAdminV2TypeEnum
|
1414
|
+
# @private
|
1415
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1416
|
+
property :enum_name, as: 'enumName'
|
1417
|
+
property :schema_bundle_id, as: 'schemaBundleId'
|
1418
|
+
end
|
1419
|
+
end
|
1420
|
+
|
1401
1421
|
class GoogleBigtableAdminV2TypeFloat32
|
1402
1422
|
# @private
|
1403
1423
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1452,6 +1472,14 @@ module Google
|
|
1452
1472
|
end
|
1453
1473
|
end
|
1454
1474
|
|
1475
|
+
class GoogleBigtableAdminV2TypeProto
|
1476
|
+
# @private
|
1477
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1478
|
+
property :message_name, as: 'messageName'
|
1479
|
+
property :schema_bundle_id, as: 'schemaBundleId'
|
1480
|
+
end
|
1481
|
+
end
|
1482
|
+
|
1455
1483
|
class GoogleBigtableAdminV2TypeString
|
1456
1484
|
# @private
|
1457
1485
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2012,6 +2040,8 @@ module Google
|
|
2012
2040
|
|
2013
2041
|
property :date_type, as: 'dateType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeDate, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeDate::Representation
|
2014
2042
|
|
2043
|
+
property :enum_type, as: 'enumType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeEnum, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeEnum::Representation
|
2044
|
+
|
2015
2045
|
property :float32_type, as: 'float32Type', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat32, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat32::Representation
|
2016
2046
|
|
2017
2047
|
property :float64_type, as: 'float64Type', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat64, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat64::Representation
|
@@ -2020,6 +2050,8 @@ module Google
|
|
2020
2050
|
|
2021
2051
|
property :map_type, as: 'mapType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeMap, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeMap::Representation
|
2022
2052
|
|
2053
|
+
property :proto_type, as: 'protoType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeProto, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeProto::Representation
|
2054
|
+
|
2023
2055
|
property :string_type, as: 'stringType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeString, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeString::Representation
|
2024
2056
|
|
2025
2057
|
property :struct_type, as: 'structType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStruct, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStruct::Representation
|
@@ -2920,6 +2920,9 @@ module Google
|
|
2920
2920
|
# to retrieve the subsequent page. When paginating, all other parameters
|
2921
2921
|
# provided to `ListSchemaBundles` must match the call that provided the page
|
2922
2922
|
# token.
|
2923
|
+
# @param [String] view
|
2924
|
+
# Optional. The resource_view to be applied to the returned SchemaBundles'
|
2925
|
+
# fields. Defaults to NAME_ONLY.
|
2923
2926
|
# @param [String] fields
|
2924
2927
|
# Selector specifying which fields to include in a partial response.
|
2925
2928
|
# @param [String] quota_user
|
@@ -2937,13 +2940,14 @@ module Google
|
|
2937
2940
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2938
2941
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2939
2942
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2940
|
-
def list_project_instance_table_schema_bundles(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2943
|
+
def list_project_instance_table_schema_bundles(parent, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2941
2944
|
command = make_simple_command(:get, 'v2/{+parent}/schemaBundles', options)
|
2942
2945
|
command.response_representation = Google::Apis::BigtableadminV2::ListSchemaBundlesResponse::Representation
|
2943
2946
|
command.response_class = Google::Apis::BigtableadminV2::ListSchemaBundlesResponse
|
2944
2947
|
command.params['parent'] = parent unless parent.nil?
|
2945
2948
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2946
2949
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2950
|
+
command.query['view'] = view unless view.nil?
|
2947
2951
|
command.query['fields'] = fields unless fields.nil?
|
2948
2952
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2949
2953
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.74.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigtableadmin_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.74.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigtableadmin_v2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|