google-apis-bigtableadmin_v2 0.66.0 → 0.68.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: 9bb0df7e56d0e8eda6785d4fcd3558a9fd7ae936576265e51aee7af6ae4d3e93
|
4
|
+
data.tar.gz: bf04c9aa8286d2918f208a2c6d34ee66e212b1a2e270c05d0f98492dd736eaf3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08f0f28bdb303c4c9d3c37b9f563dd9e2a71a7b1945a28ac4d9fe19c99c52d5922b67e75e7ae392d8b32f48faeff3fcabd89d07cd44d4bb9b491286ab089c272'
|
7
|
+
data.tar.gz: 4c7eca6fef4e57d8da836f810a1d4267871b8b92e2229d67baade71f507e8ccf0a14b03096e721236e49ac5778bd449c7eae22d89357c8c651ed8a67a3a205f5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-bigtableadmin_v2
|
2
2
|
|
3
|
+
### v0.68.0 (2025-03-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250308
|
6
|
+
|
7
|
+
### v0.67.0 (2025-03-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250227
|
10
|
+
|
3
11
|
### v0.66.0 (2025-03-02)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250224
|
@@ -1191,6 +1191,134 @@ module Google
|
|
1191
1191
|
end
|
1192
1192
|
end
|
1193
1193
|
|
1194
|
+
# The metadata for the Operation returned by CreateLogicalView.
|
1195
|
+
class CreateLogicalViewMetadata
|
1196
|
+
include Google::Apis::Core::Hashable
|
1197
|
+
|
1198
|
+
# If set, the time at which this operation finished or was canceled.
|
1199
|
+
# Corresponds to the JSON property `endTime`
|
1200
|
+
# @return [String]
|
1201
|
+
attr_accessor :end_time
|
1202
|
+
|
1203
|
+
# Request message for BigtableInstanceAdmin.CreateLogicalView.
|
1204
|
+
# Corresponds to the JSON property `originalRequest`
|
1205
|
+
# @return [Google::Apis::BigtableadminV2::CreateLogicalViewRequest]
|
1206
|
+
attr_accessor :original_request
|
1207
|
+
|
1208
|
+
# The time at which this operation started.
|
1209
|
+
# Corresponds to the JSON property `startTime`
|
1210
|
+
# @return [String]
|
1211
|
+
attr_accessor :start_time
|
1212
|
+
|
1213
|
+
def initialize(**args)
|
1214
|
+
update!(**args)
|
1215
|
+
end
|
1216
|
+
|
1217
|
+
# Update properties of this object
|
1218
|
+
def update!(**args)
|
1219
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
1220
|
+
@original_request = args[:original_request] if args.key?(:original_request)
|
1221
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
1222
|
+
end
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
# Request message for BigtableInstanceAdmin.CreateLogicalView.
|
1226
|
+
class CreateLogicalViewRequest
|
1227
|
+
include Google::Apis::Core::Hashable
|
1228
|
+
|
1229
|
+
# A SQL logical view object that can be referenced in SQL queries.
|
1230
|
+
# Corresponds to the JSON property `logicalView`
|
1231
|
+
# @return [Google::Apis::BigtableadminV2::LogicalView]
|
1232
|
+
attr_accessor :logical_view
|
1233
|
+
|
1234
|
+
# Required. The ID to use for the logical view, which will become the final
|
1235
|
+
# component of the logical view's resource name.
|
1236
|
+
# Corresponds to the JSON property `logicalViewId`
|
1237
|
+
# @return [String]
|
1238
|
+
attr_accessor :logical_view_id
|
1239
|
+
|
1240
|
+
# Required. The parent instance where this logical view will be created. Format:
|
1241
|
+
# `projects/`project`/instances/`instance``.
|
1242
|
+
# Corresponds to the JSON property `parent`
|
1243
|
+
# @return [String]
|
1244
|
+
attr_accessor :parent
|
1245
|
+
|
1246
|
+
def initialize(**args)
|
1247
|
+
update!(**args)
|
1248
|
+
end
|
1249
|
+
|
1250
|
+
# Update properties of this object
|
1251
|
+
def update!(**args)
|
1252
|
+
@logical_view = args[:logical_view] if args.key?(:logical_view)
|
1253
|
+
@logical_view_id = args[:logical_view_id] if args.key?(:logical_view_id)
|
1254
|
+
@parent = args[:parent] if args.key?(:parent)
|
1255
|
+
end
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
# The metadata for the Operation returned by CreateMaterializedView.
|
1259
|
+
class CreateMaterializedViewMetadata
|
1260
|
+
include Google::Apis::Core::Hashable
|
1261
|
+
|
1262
|
+
# If set, the time at which this operation finished or was canceled.
|
1263
|
+
# Corresponds to the JSON property `endTime`
|
1264
|
+
# @return [String]
|
1265
|
+
attr_accessor :end_time
|
1266
|
+
|
1267
|
+
# Request message for BigtableInstanceAdmin.CreateMaterializedView.
|
1268
|
+
# Corresponds to the JSON property `originalRequest`
|
1269
|
+
# @return [Google::Apis::BigtableadminV2::CreateMaterializedViewRequest]
|
1270
|
+
attr_accessor :original_request
|
1271
|
+
|
1272
|
+
# The time at which this operation started.
|
1273
|
+
# Corresponds to the JSON property `startTime`
|
1274
|
+
# @return [String]
|
1275
|
+
attr_accessor :start_time
|
1276
|
+
|
1277
|
+
def initialize(**args)
|
1278
|
+
update!(**args)
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
# Update properties of this object
|
1282
|
+
def update!(**args)
|
1283
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
1284
|
+
@original_request = args[:original_request] if args.key?(:original_request)
|
1285
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
1286
|
+
end
|
1287
|
+
end
|
1288
|
+
|
1289
|
+
# Request message for BigtableInstanceAdmin.CreateMaterializedView.
|
1290
|
+
class CreateMaterializedViewRequest
|
1291
|
+
include Google::Apis::Core::Hashable
|
1292
|
+
|
1293
|
+
# A materialized view object that can be referenced in SQL queries.
|
1294
|
+
# Corresponds to the JSON property `materializedView`
|
1295
|
+
# @return [Google::Apis::BigtableadminV2::MaterializedView]
|
1296
|
+
attr_accessor :materialized_view
|
1297
|
+
|
1298
|
+
# Required. The ID to use for the materialized view, which will become the final
|
1299
|
+
# component of the materialized view's resource name.
|
1300
|
+
# Corresponds to the JSON property `materializedViewId`
|
1301
|
+
# @return [String]
|
1302
|
+
attr_accessor :materialized_view_id
|
1303
|
+
|
1304
|
+
# Required. The parent instance where this materialized view will be created.
|
1305
|
+
# Format: `projects/`project`/instances/`instance``.
|
1306
|
+
# Corresponds to the JSON property `parent`
|
1307
|
+
# @return [String]
|
1308
|
+
attr_accessor :parent
|
1309
|
+
|
1310
|
+
def initialize(**args)
|
1311
|
+
update!(**args)
|
1312
|
+
end
|
1313
|
+
|
1314
|
+
# Update properties of this object
|
1315
|
+
def update!(**args)
|
1316
|
+
@materialized_view = args[:materialized_view] if args.key?(:materialized_view)
|
1317
|
+
@materialized_view_id = args[:materialized_view_id] if args.key?(:materialized_view_id)
|
1318
|
+
@parent = args[:parent] if args.key?(:parent)
|
1319
|
+
end
|
1320
|
+
end
|
1321
|
+
|
1194
1322
|
# Request message for google.bigtable.admin.v2.BigtableTableAdmin.CreateTable
|
1195
1323
|
class CreateTableRequest
|
1196
1324
|
include Google::Apis::Core::Hashable
|
@@ -1843,12 +1971,21 @@ module Google
|
|
1843
1971
|
class GoogleBigtableAdminV2TypeBytesEncodingRaw
|
1844
1972
|
include Google::Apis::Core::Hashable
|
1845
1973
|
|
1974
|
+
# If set, allows NULL values to be encoded as the empty string "". The actual
|
1975
|
+
# empty string, or any value which only contains the null byte 0x00, has one
|
1976
|
+
# more null byte appended.
|
1977
|
+
# Corresponds to the JSON property `escapeNulls`
|
1978
|
+
# @return [Boolean]
|
1979
|
+
attr_accessor :escape_nulls
|
1980
|
+
alias_method :escape_nulls?, :escape_nulls
|
1981
|
+
|
1846
1982
|
def initialize(**args)
|
1847
1983
|
update!(**args)
|
1848
1984
|
end
|
1849
1985
|
|
1850
1986
|
# Update properties of this object
|
1851
1987
|
def update!(**args)
|
1988
|
+
@escape_nulls = args[:escape_nulls] if args.key?(:escape_nulls)
|
1852
1989
|
end
|
1853
1990
|
end
|
1854
1991
|
|
@@ -1922,6 +2059,13 @@ module Google
|
|
1922
2059
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64EncodingBigEndianBytes]
|
1923
2060
|
attr_accessor :big_endian_bytes
|
1924
2061
|
|
2062
|
+
# Encodes the value in a variable length binary format of up to 10 bytes. Values
|
2063
|
+
# that are closer to zero use fewer bytes. Sorted mode: all values are supported.
|
2064
|
+
# Distinct mode: all values are supported.
|
2065
|
+
# Corresponds to the JSON property `orderedCodeBytes`
|
2066
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64EncodingOrderedCodeBytes]
|
2067
|
+
attr_accessor :ordered_code_bytes
|
2068
|
+
|
1925
2069
|
def initialize(**args)
|
1926
2070
|
update!(**args)
|
1927
2071
|
end
|
@@ -1929,6 +2073,7 @@ module Google
|
|
1929
2073
|
# Update properties of this object
|
1930
2074
|
def update!(**args)
|
1931
2075
|
@big_endian_bytes = args[:big_endian_bytes] if args.key?(:big_endian_bytes)
|
2076
|
+
@ordered_code_bytes = args[:ordered_code_bytes] if args.key?(:ordered_code_bytes)
|
1932
2077
|
end
|
1933
2078
|
end
|
1934
2079
|
|
@@ -1954,6 +2099,21 @@ module Google
|
|
1954
2099
|
end
|
1955
2100
|
end
|
1956
2101
|
|
2102
|
+
# Encodes the value in a variable length binary format of up to 10 bytes. Values
|
2103
|
+
# that are closer to zero use fewer bytes. Sorted mode: all values are supported.
|
2104
|
+
# Distinct mode: all values are supported.
|
2105
|
+
class GoogleBigtableAdminV2TypeInt64EncodingOrderedCodeBytes
|
2106
|
+
include Google::Apis::Core::Hashable
|
2107
|
+
|
2108
|
+
def initialize(**args)
|
2109
|
+
update!(**args)
|
2110
|
+
end
|
2111
|
+
|
2112
|
+
# Update properties of this object
|
2113
|
+
def update!(**args)
|
2114
|
+
end
|
2115
|
+
end
|
2116
|
+
|
1957
2117
|
# A mapping of keys to values of a given type. Values of type `Map` are stored
|
1958
2118
|
# in a `Value.array_value` where each entry is another `Value.array_value` with
|
1959
2119
|
# two elements (the key and the value, in that order). Normally encoded Map
|
@@ -2068,12 +2228,23 @@ module Google
|
|
2068
2228
|
class GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes
|
2069
2229
|
include Google::Apis::Core::Hashable
|
2070
2230
|
|
2231
|
+
# Single-character escape sequence used to support NULL values. If set, allows
|
2232
|
+
# NULL values to be encoded as the empty string "". The actual empty string, or
|
2233
|
+
# any value where every character equals `null_escape_char`, has one more `
|
2234
|
+
# null_escape_char` appended. If `null_escape_char` is set and does not equal
|
2235
|
+
# the ASCII null character 0x00, then the encoding will not support sorted mode.
|
2236
|
+
# .
|
2237
|
+
# Corresponds to the JSON property `nullEscapeChar`
|
2238
|
+
# @return [String]
|
2239
|
+
attr_accessor :null_escape_char
|
2240
|
+
|
2071
2241
|
def initialize(**args)
|
2072
2242
|
update!(**args)
|
2073
2243
|
end
|
2074
2244
|
|
2075
2245
|
# Update properties of this object
|
2076
2246
|
def update!(**args)
|
2247
|
+
@null_escape_char = args[:null_escape_char] if args.key?(:null_escape_char)
|
2077
2248
|
end
|
2078
2249
|
end
|
2079
2250
|
|
@@ -2096,6 +2267,11 @@ module Google
|
|
2096
2267
|
class GoogleBigtableAdminV2TypeStruct
|
2097
2268
|
include Google::Apis::Core::Hashable
|
2098
2269
|
|
2270
|
+
# Rules used to convert to or from lower level types.
|
2271
|
+
# Corresponds to the JSON property `encoding`
|
2272
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncoding]
|
2273
|
+
attr_accessor :encoding
|
2274
|
+
|
2099
2275
|
# The names and types of the fields in this struct.
|
2100
2276
|
# Corresponds to the JSON property `fields`
|
2101
2277
|
# @return [Array<Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructField>]
|
@@ -2107,10 +2283,135 @@ module Google
|
|
2107
2283
|
|
2108
2284
|
# Update properties of this object
|
2109
2285
|
def update!(**args)
|
2286
|
+
@encoding = args[:encoding] if args.key?(:encoding)
|
2110
2287
|
@fields = args[:fields] if args.key?(:fields)
|
2111
2288
|
end
|
2112
2289
|
end
|
2113
2290
|
|
2291
|
+
# Rules used to convert to or from lower level types.
|
2292
|
+
class GoogleBigtableAdminV2TypeStructEncoding
|
2293
|
+
include Google::Apis::Core::Hashable
|
2294
|
+
|
2295
|
+
# Fields are encoded independently and concatenated with a configurable `
|
2296
|
+
# delimiter` in between. A struct with no fields defined is encoded as a single `
|
2297
|
+
# delimiter`. Sorted mode: - Fields are encoded in sorted mode. - Encoded field
|
2298
|
+
# values must not contain any bytes <= `delimiter[0]` - Element-wise order is
|
2299
|
+
# preserved: `A < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`, etc.
|
2300
|
+
# Strict prefixes sort first. Distinct mode: - Fields are encoded in distinct
|
2301
|
+
# mode. - Encoded field values must not contain `delimiter[0]`.
|
2302
|
+
# Corresponds to the JSON property `delimitedBytes`
|
2303
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingDelimitedBytes]
|
2304
|
+
attr_accessor :delimited_bytes
|
2305
|
+
|
2306
|
+
# Fields are encoded independently and concatenated with the fixed byte pair `
|
2307
|
+
# 0x00, 0x01` in between. Any null (0x00) byte in an encoded field is replaced
|
2308
|
+
# by the fixed byte pair `0x00, 0xFF`. Fields that encode to the empty string ""
|
2309
|
+
# have special handling: - If *every* field encodes to "", or if the STRUCT has
|
2310
|
+
# no fields defined, then the STRUCT is encoded as the fixed byte pair `0x00,
|
2311
|
+
# 0x00`. - Otherwise, the STRUCT only encodes until the last non-empty field,
|
2312
|
+
# omitting any trailing empty fields. Any empty fields that aren't omitted are
|
2313
|
+
# replaced with the fixed byte pair `0x00, 0x00`. Examples: - STRUCT() -> "\00\
|
2314
|
+
# 00" - STRUCT("") -> "\00\00" - STRUCT("", "") -> "\00\00" - STRUCT("", "B") ->
|
2315
|
+
# "\00\00" + "\00\01" + "B" - STRUCT("A", "") -> "A" - STRUCT("", "B", "") -> "\
|
2316
|
+
# 00\00" + "\00\01" + "B" - STRUCT("A", "", "C") -> "A" + "\00\01" + "\00\00" + "
|
2317
|
+
# \00\01" + "C" Since null bytes are always escaped, this encoding can cause
|
2318
|
+
# size blowup for encodings like `Int64.BigEndianBytes` that are likely to
|
2319
|
+
# produce many such bytes. Sorted mode: - Fields are encoded in sorted mode. -
|
2320
|
+
# All values supported by the field encodings are allowed - Element-wise order
|
2321
|
+
# is preserved: `A < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`,
|
2322
|
+
# etc. Strict prefixes sort first. Distinct mode: - Fields are encoded in
|
2323
|
+
# distinct mode. - All values supported by the field encodings are allowed.
|
2324
|
+
# Corresponds to the JSON property `orderedCodeBytes`
|
2325
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingOrderedCodeBytes]
|
2326
|
+
attr_accessor :ordered_code_bytes
|
2327
|
+
|
2328
|
+
# Uses the encoding of `fields[0].type` as-is. Only valid if `fields.size == 1`.
|
2329
|
+
# Corresponds to the JSON property `singleton`
|
2330
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingSingleton]
|
2331
|
+
attr_accessor :singleton
|
2332
|
+
|
2333
|
+
def initialize(**args)
|
2334
|
+
update!(**args)
|
2335
|
+
end
|
2336
|
+
|
2337
|
+
# Update properties of this object
|
2338
|
+
def update!(**args)
|
2339
|
+
@delimited_bytes = args[:delimited_bytes] if args.key?(:delimited_bytes)
|
2340
|
+
@ordered_code_bytes = args[:ordered_code_bytes] if args.key?(:ordered_code_bytes)
|
2341
|
+
@singleton = args[:singleton] if args.key?(:singleton)
|
2342
|
+
end
|
2343
|
+
end
|
2344
|
+
|
2345
|
+
# Fields are encoded independently and concatenated with a configurable `
|
2346
|
+
# delimiter` in between. A struct with no fields defined is encoded as a single `
|
2347
|
+
# delimiter`. Sorted mode: - Fields are encoded in sorted mode. - Encoded field
|
2348
|
+
# values must not contain any bytes <= `delimiter[0]` - Element-wise order is
|
2349
|
+
# preserved: `A < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`, etc.
|
2350
|
+
# Strict prefixes sort first. Distinct mode: - Fields are encoded in distinct
|
2351
|
+
# mode. - Encoded field values must not contain `delimiter[0]`.
|
2352
|
+
class GoogleBigtableAdminV2TypeStructEncodingDelimitedBytes
|
2353
|
+
include Google::Apis::Core::Hashable
|
2354
|
+
|
2355
|
+
# Byte sequence used to delimit concatenated fields. The delimiter must contain
|
2356
|
+
# at least 1 character and at most 50 characters.
|
2357
|
+
# Corresponds to the JSON property `delimiter`
|
2358
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
2359
|
+
# @return [String]
|
2360
|
+
attr_accessor :delimiter
|
2361
|
+
|
2362
|
+
def initialize(**args)
|
2363
|
+
update!(**args)
|
2364
|
+
end
|
2365
|
+
|
2366
|
+
# Update properties of this object
|
2367
|
+
def update!(**args)
|
2368
|
+
@delimiter = args[:delimiter] if args.key?(:delimiter)
|
2369
|
+
end
|
2370
|
+
end
|
2371
|
+
|
2372
|
+
# Fields are encoded independently and concatenated with the fixed byte pair `
|
2373
|
+
# 0x00, 0x01` in between. Any null (0x00) byte in an encoded field is replaced
|
2374
|
+
# by the fixed byte pair `0x00, 0xFF`. Fields that encode to the empty string ""
|
2375
|
+
# have special handling: - If *every* field encodes to "", or if the STRUCT has
|
2376
|
+
# no fields defined, then the STRUCT is encoded as the fixed byte pair `0x00,
|
2377
|
+
# 0x00`. - Otherwise, the STRUCT only encodes until the last non-empty field,
|
2378
|
+
# omitting any trailing empty fields. Any empty fields that aren't omitted are
|
2379
|
+
# replaced with the fixed byte pair `0x00, 0x00`. Examples: - STRUCT() -> "\00\
|
2380
|
+
# 00" - STRUCT("") -> "\00\00" - STRUCT("", "") -> "\00\00" - STRUCT("", "B") ->
|
2381
|
+
# "\00\00" + "\00\01" + "B" - STRUCT("A", "") -> "A" - STRUCT("", "B", "") -> "\
|
2382
|
+
# 00\00" + "\00\01" + "B" - STRUCT("A", "", "C") -> "A" + "\00\01" + "\00\00" + "
|
2383
|
+
# \00\01" + "C" Since null bytes are always escaped, this encoding can cause
|
2384
|
+
# size blowup for encodings like `Int64.BigEndianBytes` that are likely to
|
2385
|
+
# produce many such bytes. Sorted mode: - Fields are encoded in sorted mode. -
|
2386
|
+
# All values supported by the field encodings are allowed - Element-wise order
|
2387
|
+
# is preserved: `A < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`,
|
2388
|
+
# etc. Strict prefixes sort first. Distinct mode: - Fields are encoded in
|
2389
|
+
# distinct mode. - All values supported by the field encodings are allowed.
|
2390
|
+
class GoogleBigtableAdminV2TypeStructEncodingOrderedCodeBytes
|
2391
|
+
include Google::Apis::Core::Hashable
|
2392
|
+
|
2393
|
+
def initialize(**args)
|
2394
|
+
update!(**args)
|
2395
|
+
end
|
2396
|
+
|
2397
|
+
# Update properties of this object
|
2398
|
+
def update!(**args)
|
2399
|
+
end
|
2400
|
+
end
|
2401
|
+
|
2402
|
+
# Uses the encoding of `fields[0].type` as-is. Only valid if `fields.size == 1`.
|
2403
|
+
class GoogleBigtableAdminV2TypeStructEncodingSingleton
|
2404
|
+
include Google::Apis::Core::Hashable
|
2405
|
+
|
2406
|
+
def initialize(**args)
|
2407
|
+
update!(**args)
|
2408
|
+
end
|
2409
|
+
|
2410
|
+
# Update properties of this object
|
2411
|
+
def update!(**args)
|
2412
|
+
end
|
2413
|
+
end
|
2414
|
+
|
2114
2415
|
# A struct field and its type.
|
2115
2416
|
class GoogleBigtableAdminV2TypeStructField
|
2116
2417
|
include Google::Apis::Core::Hashable
|
@@ -2156,12 +2457,37 @@ module Google
|
|
2156
2457
|
class GoogleBigtableAdminV2TypeTimestamp
|
2157
2458
|
include Google::Apis::Core::Hashable
|
2158
2459
|
|
2460
|
+
# Rules used to convert to or from lower level types.
|
2461
|
+
# Corresponds to the JSON property `encoding`
|
2462
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeTimestampEncoding]
|
2463
|
+
attr_accessor :encoding
|
2464
|
+
|
2159
2465
|
def initialize(**args)
|
2160
2466
|
update!(**args)
|
2161
2467
|
end
|
2162
2468
|
|
2163
2469
|
# Update properties of this object
|
2164
2470
|
def update!(**args)
|
2471
|
+
@encoding = args[:encoding] if args.key?(:encoding)
|
2472
|
+
end
|
2473
|
+
end
|
2474
|
+
|
2475
|
+
# Rules used to convert to or from lower level types.
|
2476
|
+
class GoogleBigtableAdminV2TypeTimestampEncoding
|
2477
|
+
include Google::Apis::Core::Hashable
|
2478
|
+
|
2479
|
+
# Rules used to convert to or from lower level types.
|
2480
|
+
# Corresponds to the JSON property `unixMicrosInt64`
|
2481
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64Encoding]
|
2482
|
+
attr_accessor :unix_micros_int64
|
2483
|
+
|
2484
|
+
def initialize(**args)
|
2485
|
+
update!(**args)
|
2486
|
+
end
|
2487
|
+
|
2488
|
+
# Update properties of this object
|
2489
|
+
def update!(**args)
|
2490
|
+
@unix_micros_int64 = args[:unix_micros_int64] if args.key?(:unix_micros_int64)
|
2165
2491
|
end
|
2166
2492
|
end
|
2167
2493
|
|
@@ -2631,6 +2957,81 @@ module Google
|
|
2631
2957
|
end
|
2632
2958
|
end
|
2633
2959
|
|
2960
|
+
# A SQL logical view object that can be referenced in SQL queries.
|
2961
|
+
class LogicalView
|
2962
|
+
include Google::Apis::Core::Hashable
|
2963
|
+
|
2964
|
+
# Optional. The etag for this logical view. This may be sent on update requests
|
2965
|
+
# to ensure that the client has an up-to-date value before proceeding. The
|
2966
|
+
# server returns an ABORTED error on a mismatched etag.
|
2967
|
+
# Corresponds to the JSON property `etag`
|
2968
|
+
# @return [String]
|
2969
|
+
attr_accessor :etag
|
2970
|
+
|
2971
|
+
# Identifier. The unique name of the logical view. Format: `projects/`project`/
|
2972
|
+
# instances/`instance`/logicalViews/`logical_view``
|
2973
|
+
# Corresponds to the JSON property `name`
|
2974
|
+
# @return [String]
|
2975
|
+
attr_accessor :name
|
2976
|
+
|
2977
|
+
# Required. The logical view's select query.
|
2978
|
+
# Corresponds to the JSON property `query`
|
2979
|
+
# @return [String]
|
2980
|
+
attr_accessor :query
|
2981
|
+
|
2982
|
+
def initialize(**args)
|
2983
|
+
update!(**args)
|
2984
|
+
end
|
2985
|
+
|
2986
|
+
# Update properties of this object
|
2987
|
+
def update!(**args)
|
2988
|
+
@etag = args[:etag] if args.key?(:etag)
|
2989
|
+
@name = args[:name] if args.key?(:name)
|
2990
|
+
@query = args[:query] if args.key?(:query)
|
2991
|
+
end
|
2992
|
+
end
|
2993
|
+
|
2994
|
+
# A materialized view object that can be referenced in SQL queries.
|
2995
|
+
class MaterializedView
|
2996
|
+
include Google::Apis::Core::Hashable
|
2997
|
+
|
2998
|
+
# Set to true to make the MaterializedView protected against deletion.
|
2999
|
+
# Corresponds to the JSON property `deletionProtection`
|
3000
|
+
# @return [Boolean]
|
3001
|
+
attr_accessor :deletion_protection
|
3002
|
+
alias_method :deletion_protection?, :deletion_protection
|
3003
|
+
|
3004
|
+
# Optional. The etag for this materialized view. This may be sent on update
|
3005
|
+
# requests to ensure that the client has an up-to-date value before proceeding.
|
3006
|
+
# The server returns an ABORTED error on a mismatched etag.
|
3007
|
+
# Corresponds to the JSON property `etag`
|
3008
|
+
# @return [String]
|
3009
|
+
attr_accessor :etag
|
3010
|
+
|
3011
|
+
# Identifier. The unique name of the materialized view. Format: `projects/`
|
3012
|
+
# project`/instances/`instance`/materializedViews/`materialized_view``
|
3013
|
+
# Corresponds to the JSON property `name`
|
3014
|
+
# @return [String]
|
3015
|
+
attr_accessor :name
|
3016
|
+
|
3017
|
+
# Required. Immutable. The materialized view's select query.
|
3018
|
+
# Corresponds to the JSON property `query`
|
3019
|
+
# @return [String]
|
3020
|
+
attr_accessor :query
|
3021
|
+
|
3022
|
+
def initialize(**args)
|
3023
|
+
update!(**args)
|
3024
|
+
end
|
3025
|
+
|
3026
|
+
# Update properties of this object
|
3027
|
+
def update!(**args)
|
3028
|
+
@deletion_protection = args[:deletion_protection] if args.key?(:deletion_protection)
|
3029
|
+
@etag = args[:etag] if args.key?(:etag)
|
3030
|
+
@name = args[:name] if args.key?(:name)
|
3031
|
+
@query = args[:query] if args.key?(:query)
|
3032
|
+
end
|
3033
|
+
end
|
3034
|
+
|
2634
3035
|
# A create, update, or delete of a particular column family.
|
2635
3036
|
class Modification
|
2636
3037
|
include Google::Apis::Core::Hashable
|
@@ -3877,6 +4278,62 @@ module Google
|
|
3877
4278
|
end
|
3878
4279
|
end
|
3879
4280
|
|
4281
|
+
# The metadata for the Operation returned by UpdateLogicalView.
|
4282
|
+
class UpdateLogicalViewMetadata
|
4283
|
+
include Google::Apis::Core::Hashable
|
4284
|
+
|
4285
|
+
# If set, the time at which this operation finished or was canceled.
|
4286
|
+
# Corresponds to the JSON property `endTime`
|
4287
|
+
# @return [String]
|
4288
|
+
attr_accessor :end_time
|
4289
|
+
|
4290
|
+
# Request message for BigtableInstanceAdmin.UpdateLogicalView.
|
4291
|
+
# Corresponds to the JSON property `originalRequest`
|
4292
|
+
# @return [Google::Apis::BigtableadminV2::UpdateLogicalViewRequest]
|
4293
|
+
attr_accessor :original_request
|
4294
|
+
|
4295
|
+
# The time at which this operation was started.
|
4296
|
+
# Corresponds to the JSON property `startTime`
|
4297
|
+
# @return [String]
|
4298
|
+
attr_accessor :start_time
|
4299
|
+
|
4300
|
+
def initialize(**args)
|
4301
|
+
update!(**args)
|
4302
|
+
end
|
4303
|
+
|
4304
|
+
# Update properties of this object
|
4305
|
+
def update!(**args)
|
4306
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
4307
|
+
@original_request = args[:original_request] if args.key?(:original_request)
|
4308
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
4309
|
+
end
|
4310
|
+
end
|
4311
|
+
|
4312
|
+
# Request message for BigtableInstanceAdmin.UpdateLogicalView.
|
4313
|
+
class UpdateLogicalViewRequest
|
4314
|
+
include Google::Apis::Core::Hashable
|
4315
|
+
|
4316
|
+
# A SQL logical view object that can be referenced in SQL queries.
|
4317
|
+
# Corresponds to the JSON property `logicalView`
|
4318
|
+
# @return [Google::Apis::BigtableadminV2::LogicalView]
|
4319
|
+
attr_accessor :logical_view
|
4320
|
+
|
4321
|
+
# Optional. The list of fields to update.
|
4322
|
+
# Corresponds to the JSON property `updateMask`
|
4323
|
+
# @return [String]
|
4324
|
+
attr_accessor :update_mask
|
4325
|
+
|
4326
|
+
def initialize(**args)
|
4327
|
+
update!(**args)
|
4328
|
+
end
|
4329
|
+
|
4330
|
+
# Update properties of this object
|
4331
|
+
def update!(**args)
|
4332
|
+
@logical_view = args[:logical_view] if args.key?(:logical_view)
|
4333
|
+
@update_mask = args[:update_mask] if args.key?(:update_mask)
|
4334
|
+
end
|
4335
|
+
end
|
4336
|
+
|
3880
4337
|
# Metadata type for the operation returned by UpdateTable.
|
3881
4338
|
class UpdateTableMetadata
|
3882
4339
|
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.68.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250308"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -190,6 +190,30 @@ module Google
|
|
190
190
|
include Google::Apis::Core::JsonObjectSupport
|
191
191
|
end
|
192
192
|
|
193
|
+
class CreateLogicalViewMetadata
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
199
|
+
class CreateLogicalViewRequest
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
205
|
+
class CreateMaterializedViewMetadata
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
211
|
+
class CreateMaterializedViewRequest
|
212
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
|
+
|
214
|
+
include Google::Apis::Core::JsonObjectSupport
|
215
|
+
end
|
216
|
+
|
193
217
|
class CreateTableRequest
|
194
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
219
|
|
@@ -376,6 +400,12 @@ module Google
|
|
376
400
|
include Google::Apis::Core::JsonObjectSupport
|
377
401
|
end
|
378
402
|
|
403
|
+
class GoogleBigtableAdminV2TypeInt64EncodingOrderedCodeBytes
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
|
+
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
407
|
+
end
|
408
|
+
|
379
409
|
class GoogleBigtableAdminV2TypeMap
|
380
410
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
411
|
|
@@ -412,6 +442,30 @@ module Google
|
|
412
442
|
include Google::Apis::Core::JsonObjectSupport
|
413
443
|
end
|
414
444
|
|
445
|
+
class GoogleBigtableAdminV2TypeStructEncoding
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
+
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
449
|
+
end
|
450
|
+
|
451
|
+
class GoogleBigtableAdminV2TypeStructEncodingDelimitedBytes
|
452
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
|
+
|
454
|
+
include Google::Apis::Core::JsonObjectSupport
|
455
|
+
end
|
456
|
+
|
457
|
+
class GoogleBigtableAdminV2TypeStructEncodingOrderedCodeBytes
|
458
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
|
+
|
460
|
+
include Google::Apis::Core::JsonObjectSupport
|
461
|
+
end
|
462
|
+
|
463
|
+
class GoogleBigtableAdminV2TypeStructEncodingSingleton
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
415
469
|
class GoogleBigtableAdminV2TypeStructField
|
416
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
471
|
|
@@ -424,6 +478,12 @@ module Google
|
|
424
478
|
include Google::Apis::Core::JsonObjectSupport
|
425
479
|
end
|
426
480
|
|
481
|
+
class GoogleBigtableAdminV2TypeTimestampEncoding
|
482
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
|
+
|
484
|
+
include Google::Apis::Core::JsonObjectSupport
|
485
|
+
end
|
486
|
+
|
427
487
|
class HotTablet
|
428
488
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
489
|
|
@@ -502,6 +562,18 @@ module Google
|
|
502
562
|
include Google::Apis::Core::JsonObjectSupport
|
503
563
|
end
|
504
564
|
|
565
|
+
class LogicalView
|
566
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
567
|
+
|
568
|
+
include Google::Apis::Core::JsonObjectSupport
|
569
|
+
end
|
570
|
+
|
571
|
+
class MaterializedView
|
572
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
573
|
+
|
574
|
+
include Google::Apis::Core::JsonObjectSupport
|
575
|
+
end
|
576
|
+
|
505
577
|
class Modification
|
506
578
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
507
579
|
|
@@ -706,6 +778,18 @@ module Google
|
|
706
778
|
include Google::Apis::Core::JsonObjectSupport
|
707
779
|
end
|
708
780
|
|
781
|
+
class UpdateLogicalViewMetadata
|
782
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
783
|
+
|
784
|
+
include Google::Apis::Core::JsonObjectSupport
|
785
|
+
end
|
786
|
+
|
787
|
+
class UpdateLogicalViewRequest
|
788
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
789
|
+
|
790
|
+
include Google::Apis::Core::JsonObjectSupport
|
791
|
+
end
|
792
|
+
|
709
793
|
class UpdateTableMetadata
|
710
794
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
711
795
|
|
@@ -1004,6 +1088,46 @@ module Google
|
|
1004
1088
|
end
|
1005
1089
|
end
|
1006
1090
|
|
1091
|
+
class CreateLogicalViewMetadata
|
1092
|
+
# @private
|
1093
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1094
|
+
property :end_time, as: 'endTime'
|
1095
|
+
property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV2::CreateLogicalViewRequest, decorator: Google::Apis::BigtableadminV2::CreateLogicalViewRequest::Representation
|
1096
|
+
|
1097
|
+
property :start_time, as: 'startTime'
|
1098
|
+
end
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
class CreateLogicalViewRequest
|
1102
|
+
# @private
|
1103
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1104
|
+
property :logical_view, as: 'logicalView', class: Google::Apis::BigtableadminV2::LogicalView, decorator: Google::Apis::BigtableadminV2::LogicalView::Representation
|
1105
|
+
|
1106
|
+
property :logical_view_id, as: 'logicalViewId'
|
1107
|
+
property :parent, as: 'parent'
|
1108
|
+
end
|
1109
|
+
end
|
1110
|
+
|
1111
|
+
class CreateMaterializedViewMetadata
|
1112
|
+
# @private
|
1113
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1114
|
+
property :end_time, as: 'endTime'
|
1115
|
+
property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV2::CreateMaterializedViewRequest, decorator: Google::Apis::BigtableadminV2::CreateMaterializedViewRequest::Representation
|
1116
|
+
|
1117
|
+
property :start_time, as: 'startTime'
|
1118
|
+
end
|
1119
|
+
end
|
1120
|
+
|
1121
|
+
class CreateMaterializedViewRequest
|
1122
|
+
# @private
|
1123
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1124
|
+
property :materialized_view, as: 'materializedView', class: Google::Apis::BigtableadminV2::MaterializedView, decorator: Google::Apis::BigtableadminV2::MaterializedView::Representation
|
1125
|
+
|
1126
|
+
property :materialized_view_id, as: 'materializedViewId'
|
1127
|
+
property :parent, as: 'parent'
|
1128
|
+
end
|
1129
|
+
end
|
1130
|
+
|
1007
1131
|
class CreateTableRequest
|
1008
1132
|
# @private
|
1009
1133
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1201,6 +1325,7 @@ module Google
|
|
1201
1325
|
class GoogleBigtableAdminV2TypeBytesEncodingRaw
|
1202
1326
|
# @private
|
1203
1327
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1328
|
+
property :escape_nulls, as: 'escapeNulls'
|
1204
1329
|
end
|
1205
1330
|
end
|
1206
1331
|
|
@@ -1235,6 +1360,8 @@ module Google
|
|
1235
1360
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1236
1361
|
property :big_endian_bytes, as: 'bigEndianBytes', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64EncodingBigEndianBytes, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64EncodingBigEndianBytes::Representation
|
1237
1362
|
|
1363
|
+
property :ordered_code_bytes, as: 'orderedCodeBytes', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64EncodingOrderedCodeBytes, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64EncodingOrderedCodeBytes::Representation
|
1364
|
+
|
1238
1365
|
end
|
1239
1366
|
end
|
1240
1367
|
|
@@ -1246,6 +1373,12 @@ module Google
|
|
1246
1373
|
end
|
1247
1374
|
end
|
1248
1375
|
|
1376
|
+
class GoogleBigtableAdminV2TypeInt64EncodingOrderedCodeBytes
|
1377
|
+
# @private
|
1378
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1379
|
+
end
|
1380
|
+
end
|
1381
|
+
|
1249
1382
|
class GoogleBigtableAdminV2TypeMap
|
1250
1383
|
# @private
|
1251
1384
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1277,6 +1410,7 @@ module Google
|
|
1277
1410
|
class GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes
|
1278
1411
|
# @private
|
1279
1412
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1413
|
+
property :null_escape_char, as: 'nullEscapeChar'
|
1280
1414
|
end
|
1281
1415
|
end
|
1282
1416
|
|
@@ -1289,11 +1423,44 @@ module Google
|
|
1289
1423
|
class GoogleBigtableAdminV2TypeStruct
|
1290
1424
|
# @private
|
1291
1425
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1426
|
+
property :encoding, as: 'encoding', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncoding, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncoding::Representation
|
1427
|
+
|
1292
1428
|
collection :fields, as: 'fields', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructField, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructField::Representation
|
1293
1429
|
|
1294
1430
|
end
|
1295
1431
|
end
|
1296
1432
|
|
1433
|
+
class GoogleBigtableAdminV2TypeStructEncoding
|
1434
|
+
# @private
|
1435
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1436
|
+
property :delimited_bytes, as: 'delimitedBytes', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingDelimitedBytes, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingDelimitedBytes::Representation
|
1437
|
+
|
1438
|
+
property :ordered_code_bytes, as: 'orderedCodeBytes', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingOrderedCodeBytes, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingOrderedCodeBytes::Representation
|
1439
|
+
|
1440
|
+
property :singleton, as: 'singleton', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingSingleton, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingSingleton::Representation
|
1441
|
+
|
1442
|
+
end
|
1443
|
+
end
|
1444
|
+
|
1445
|
+
class GoogleBigtableAdminV2TypeStructEncodingDelimitedBytes
|
1446
|
+
# @private
|
1447
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1448
|
+
property :delimiter, :base64 => true, as: 'delimiter'
|
1449
|
+
end
|
1450
|
+
end
|
1451
|
+
|
1452
|
+
class GoogleBigtableAdminV2TypeStructEncodingOrderedCodeBytes
|
1453
|
+
# @private
|
1454
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1455
|
+
end
|
1456
|
+
end
|
1457
|
+
|
1458
|
+
class GoogleBigtableAdminV2TypeStructEncodingSingleton
|
1459
|
+
# @private
|
1460
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1461
|
+
end
|
1462
|
+
end
|
1463
|
+
|
1297
1464
|
class GoogleBigtableAdminV2TypeStructField
|
1298
1465
|
# @private
|
1299
1466
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1306,6 +1473,16 @@ module Google
|
|
1306
1473
|
class GoogleBigtableAdminV2TypeTimestamp
|
1307
1474
|
# @private
|
1308
1475
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1476
|
+
property :encoding, as: 'encoding', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeTimestampEncoding, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeTimestampEncoding::Representation
|
1477
|
+
|
1478
|
+
end
|
1479
|
+
end
|
1480
|
+
|
1481
|
+
class GoogleBigtableAdminV2TypeTimestampEncoding
|
1482
|
+
# @private
|
1483
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1484
|
+
property :unix_micros_int64, as: 'unixMicrosInt64', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64Encoding, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64Encoding::Representation
|
1485
|
+
|
1309
1486
|
end
|
1310
1487
|
end
|
1311
1488
|
|
@@ -1439,6 +1616,25 @@ module Google
|
|
1439
1616
|
end
|
1440
1617
|
end
|
1441
1618
|
|
1619
|
+
class LogicalView
|
1620
|
+
# @private
|
1621
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1622
|
+
property :etag, as: 'etag'
|
1623
|
+
property :name, as: 'name'
|
1624
|
+
property :query, as: 'query'
|
1625
|
+
end
|
1626
|
+
end
|
1627
|
+
|
1628
|
+
class MaterializedView
|
1629
|
+
# @private
|
1630
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1631
|
+
property :deletion_protection, as: 'deletionProtection'
|
1632
|
+
property :etag, as: 'etag'
|
1633
|
+
property :name, as: 'name'
|
1634
|
+
property :query, as: 'query'
|
1635
|
+
end
|
1636
|
+
end
|
1637
|
+
|
1442
1638
|
class Modification
|
1443
1639
|
# @private
|
1444
1640
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1775,6 +1971,25 @@ module Google
|
|
1775
1971
|
end
|
1776
1972
|
end
|
1777
1973
|
|
1974
|
+
class UpdateLogicalViewMetadata
|
1975
|
+
# @private
|
1976
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1977
|
+
property :end_time, as: 'endTime'
|
1978
|
+
property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV2::UpdateLogicalViewRequest, decorator: Google::Apis::BigtableadminV2::UpdateLogicalViewRequest::Representation
|
1979
|
+
|
1980
|
+
property :start_time, as: 'startTime'
|
1981
|
+
end
|
1982
|
+
end
|
1983
|
+
|
1984
|
+
class UpdateLogicalViewRequest
|
1985
|
+
# @private
|
1986
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1987
|
+
property :logical_view, as: 'logicalView', class: Google::Apis::BigtableadminV2::LogicalView, decorator: Google::Apis::BigtableadminV2::LogicalView::Representation
|
1988
|
+
|
1989
|
+
property :update_mask, as: 'updateMask'
|
1990
|
+
end
|
1991
|
+
end
|
1992
|
+
|
1778
1993
|
class UpdateTableMetadata
|
1779
1994
|
# @private
|
1780
1995
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1275,6 +1275,113 @@ module Google
|
|
1275
1275
|
execute_or_queue_command(command, &block)
|
1276
1276
|
end
|
1277
1277
|
|
1278
|
+
# Gets the access control policy for an instance resource. Returns an empty
|
1279
|
+
# policy if an instance exists but does not have a policy set.
|
1280
|
+
# @param [String] resource
|
1281
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
1282
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
1283
|
+
# appropriate value for this field.
|
1284
|
+
# @param [Google::Apis::BigtableadminV2::GetIamPolicyRequest] get_iam_policy_request_object
|
1285
|
+
# @param [String] fields
|
1286
|
+
# Selector specifying which fields to include in a partial response.
|
1287
|
+
# @param [String] quota_user
|
1288
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1289
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1290
|
+
# @param [Google::Apis::RequestOptions] options
|
1291
|
+
# Request-specific options
|
1292
|
+
#
|
1293
|
+
# @yield [result, err] Result & error if block supplied
|
1294
|
+
# @yieldparam result [Google::Apis::BigtableadminV2::Policy] parsed result object
|
1295
|
+
# @yieldparam err [StandardError] error object if request failed
|
1296
|
+
#
|
1297
|
+
# @return [Google::Apis::BigtableadminV2::Policy]
|
1298
|
+
#
|
1299
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1300
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1301
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1302
|
+
def get_logical_view_iam_policy(resource, get_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1303
|
+
command = make_simple_command(:post, 'v2/{+resource}:getIamPolicy', options)
|
1304
|
+
command.request_representation = Google::Apis::BigtableadminV2::GetIamPolicyRequest::Representation
|
1305
|
+
command.request_object = get_iam_policy_request_object
|
1306
|
+
command.response_representation = Google::Apis::BigtableadminV2::Policy::Representation
|
1307
|
+
command.response_class = Google::Apis::BigtableadminV2::Policy
|
1308
|
+
command.params['resource'] = resource unless resource.nil?
|
1309
|
+
command.query['fields'] = fields unless fields.nil?
|
1310
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1311
|
+
execute_or_queue_command(command, &block)
|
1312
|
+
end
|
1313
|
+
|
1314
|
+
# Sets the access control policy on an instance resource. Replaces any existing
|
1315
|
+
# policy.
|
1316
|
+
# @param [String] resource
|
1317
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
1318
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
1319
|
+
# appropriate value for this field.
|
1320
|
+
# @param [Google::Apis::BigtableadminV2::SetIamPolicyRequest] set_iam_policy_request_object
|
1321
|
+
# @param [String] fields
|
1322
|
+
# Selector specifying which fields to include in a partial response.
|
1323
|
+
# @param [String] quota_user
|
1324
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1325
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1326
|
+
# @param [Google::Apis::RequestOptions] options
|
1327
|
+
# Request-specific options
|
1328
|
+
#
|
1329
|
+
# @yield [result, err] Result & error if block supplied
|
1330
|
+
# @yieldparam result [Google::Apis::BigtableadminV2::Policy] parsed result object
|
1331
|
+
# @yieldparam err [StandardError] error object if request failed
|
1332
|
+
#
|
1333
|
+
# @return [Google::Apis::BigtableadminV2::Policy]
|
1334
|
+
#
|
1335
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1336
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1337
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1338
|
+
def set_logical_view_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1339
|
+
command = make_simple_command(:post, 'v2/{+resource}:setIamPolicy', options)
|
1340
|
+
command.request_representation = Google::Apis::BigtableadminV2::SetIamPolicyRequest::Representation
|
1341
|
+
command.request_object = set_iam_policy_request_object
|
1342
|
+
command.response_representation = Google::Apis::BigtableadminV2::Policy::Representation
|
1343
|
+
command.response_class = Google::Apis::BigtableadminV2::Policy
|
1344
|
+
command.params['resource'] = resource unless resource.nil?
|
1345
|
+
command.query['fields'] = fields unless fields.nil?
|
1346
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1347
|
+
execute_or_queue_command(command, &block)
|
1348
|
+
end
|
1349
|
+
|
1350
|
+
# Returns permissions that the caller has on the specified instance resource.
|
1351
|
+
# @param [String] resource
|
1352
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
1353
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
1354
|
+
# appropriate value for this field.
|
1355
|
+
# @param [Google::Apis::BigtableadminV2::TestIamPermissionsRequest] test_iam_permissions_request_object
|
1356
|
+
# @param [String] fields
|
1357
|
+
# Selector specifying which fields to include in a partial response.
|
1358
|
+
# @param [String] quota_user
|
1359
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1360
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1361
|
+
# @param [Google::Apis::RequestOptions] options
|
1362
|
+
# Request-specific options
|
1363
|
+
#
|
1364
|
+
# @yield [result, err] Result & error if block supplied
|
1365
|
+
# @yieldparam result [Google::Apis::BigtableadminV2::TestIamPermissionsResponse] parsed result object
|
1366
|
+
# @yieldparam err [StandardError] error object if request failed
|
1367
|
+
#
|
1368
|
+
# @return [Google::Apis::BigtableadminV2::TestIamPermissionsResponse]
|
1369
|
+
#
|
1370
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1371
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1372
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1373
|
+
def test_logical_view_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1374
|
+
command = make_simple_command(:post, 'v2/{+resource}:testIamPermissions', options)
|
1375
|
+
command.request_representation = Google::Apis::BigtableadminV2::TestIamPermissionsRequest::Representation
|
1376
|
+
command.request_object = test_iam_permissions_request_object
|
1377
|
+
command.response_representation = Google::Apis::BigtableadminV2::TestIamPermissionsResponse::Representation
|
1378
|
+
command.response_class = Google::Apis::BigtableadminV2::TestIamPermissionsResponse
|
1379
|
+
command.params['resource'] = resource unless resource.nil?
|
1380
|
+
command.query['fields'] = fields unless fields.nil?
|
1381
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1382
|
+
execute_or_queue_command(command, &block)
|
1383
|
+
end
|
1384
|
+
|
1278
1385
|
# Gets the access control policy for an instance resource. Returns an empty
|
1279
1386
|
# policy if an instance exists but does not have a policy set.
|
1280
1387
|
# @param [String] resource
|
@@ -1731,8 +1838,8 @@ module Google
|
|
1731
1838
|
# the following fields: * `change_stream_config` * `change_stream_config.
|
1732
1839
|
# retention_period` * `deletion_protection` * `automated_backup_policy` * `
|
1733
1840
|
# automated_backup_policy.retention_period` * `automated_backup_policy.frequency`
|
1734
|
-
# If `column_families` is set in `update_mask`, it will
|
1735
|
-
# error.
|
1841
|
+
# * `row_key_schema` If `column_families` is set in `update_mask`, it will
|
1842
|
+
# return an UNIMPLEMENTED error.
|
1736
1843
|
# @param [String] fields
|
1737
1844
|
# Selector specifying which fields to include in a partial response.
|
1738
1845
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.68.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.68.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:
|