google-apis-bigtableadmin_v2 0.76.0 → 0.78.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: bb9c65ba62bb4063aed3820a0a5534e83327056aa0ab4f0579ae62ccee7cfaac
|
4
|
+
data.tar.gz: 70fc84f767296ac6cc6007c2cde43632a9dfc63b7ed415ae73bbf841abf5e58b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 870e6221696f688aac1235e176cd8290187b4f96597fb2642bffa61a0ed2402354235fdfa3e9a57ce2348465cb8fef7d7148c43c6b17af37a9cdf5d0f9150fbf
|
7
|
+
data.tar.gz: be9061dfffa4f2656565d693387772008894fd902a3b7338ce48e1b67fae23d3448f1a2965a770363707c0aa4bad739a9514e07f759db8642827ad7443b88479
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-bigtableadmin_v2
|
2
2
|
|
3
|
+
### v0.78.0 (2025-09-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250912
|
6
|
+
|
7
|
+
### v0.77.0 (2025-09-14)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250828
|
10
|
+
|
3
11
|
### v0.76.0 (2025-08-31)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250821
|
@@ -792,8 +792,8 @@ module Google
|
|
792
792
|
# that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
|
793
793
|
# sort order is important, for example when encoding keys. - Distinct: In this
|
794
794
|
# mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
|
795
|
-
# However, the converse is not guaranteed. For example, both
|
796
|
-
# '2'
|
795
|
+
# However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
|
796
|
+
# '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
|
797
797
|
# value. The API clearly documents which mode is used wherever an encoding can
|
798
798
|
# be configured. Each encoding also documents which values are supported in
|
799
799
|
# which modes. For example, when encoding INT64 as a numeric STRING, negative
|
@@ -1008,22 +1008,33 @@ module Google
|
|
1008
1008
|
class CreateBackupMetadata
|
1009
1009
|
include Google::Apis::Core::Hashable
|
1010
1010
|
|
1011
|
-
# If set, the time at which this operation finished or was cancelled.
|
1011
|
+
# If set, the time at which this operation finished or was cancelled. DEPRECATED:
|
1012
|
+
# Use finish_time instead.
|
1012
1013
|
# Corresponds to the JSON property `endTime`
|
1013
1014
|
# @return [String]
|
1014
1015
|
attr_accessor :end_time
|
1015
1016
|
|
1017
|
+
# The time at which the operation failed or was completed successfully.
|
1018
|
+
# Corresponds to the JSON property `finishTime`
|
1019
|
+
# @return [String]
|
1020
|
+
attr_accessor :finish_time
|
1021
|
+
|
1016
1022
|
# The name of the backup being created.
|
1017
1023
|
# Corresponds to the JSON property `name`
|
1018
1024
|
# @return [String]
|
1019
1025
|
attr_accessor :name
|
1020
1026
|
|
1027
|
+
# The time at which the original request was received.
|
1028
|
+
# Corresponds to the JSON property `requestTime`
|
1029
|
+
# @return [String]
|
1030
|
+
attr_accessor :request_time
|
1031
|
+
|
1021
1032
|
# The name of the table the backup is created from.
|
1022
1033
|
# Corresponds to the JSON property `sourceTable`
|
1023
1034
|
# @return [String]
|
1024
1035
|
attr_accessor :source_table
|
1025
1036
|
|
1026
|
-
# The time at which this operation started.
|
1037
|
+
# The time at which this operation started. DEPRECATED: Use request_time instead.
|
1027
1038
|
# Corresponds to the JSON property `startTime`
|
1028
1039
|
# @return [String]
|
1029
1040
|
attr_accessor :start_time
|
@@ -1035,7 +1046,9 @@ module Google
|
|
1035
1046
|
# Update properties of this object
|
1036
1047
|
def update!(**args)
|
1037
1048
|
@end_time = args[:end_time] if args.key?(:end_time)
|
1049
|
+
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
1038
1050
|
@name = args[:name] if args.key?(:name)
|
1051
|
+
@request_time = args[:request_time] if args.key?(:request_time)
|
1039
1052
|
@source_table = args[:source_table] if args.key?(:source_table)
|
1040
1053
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1041
1054
|
end
|
@@ -1195,17 +1208,27 @@ module Google
|
|
1195
1208
|
class CreateLogicalViewMetadata
|
1196
1209
|
include Google::Apis::Core::Hashable
|
1197
1210
|
|
1198
|
-
#
|
1211
|
+
# DEPRECATED: Use finish_time instead.
|
1199
1212
|
# Corresponds to the JSON property `endTime`
|
1200
1213
|
# @return [String]
|
1201
1214
|
attr_accessor :end_time
|
1202
1215
|
|
1216
|
+
# The time at which the operation failed or was completed successfully.
|
1217
|
+
# Corresponds to the JSON property `finishTime`
|
1218
|
+
# @return [String]
|
1219
|
+
attr_accessor :finish_time
|
1220
|
+
|
1203
1221
|
# Request message for BigtableInstanceAdmin.CreateLogicalView.
|
1204
1222
|
# Corresponds to the JSON property `originalRequest`
|
1205
1223
|
# @return [Google::Apis::BigtableadminV2::CreateLogicalViewRequest]
|
1206
1224
|
attr_accessor :original_request
|
1207
1225
|
|
1208
|
-
# The time at which
|
1226
|
+
# The time at which the original request was received.
|
1227
|
+
# Corresponds to the JSON property `requestTime`
|
1228
|
+
# @return [String]
|
1229
|
+
attr_accessor :request_time
|
1230
|
+
|
1231
|
+
# DEPRECATED: Use request_time instead.
|
1209
1232
|
# Corresponds to the JSON property `startTime`
|
1210
1233
|
# @return [String]
|
1211
1234
|
attr_accessor :start_time
|
@@ -1217,7 +1240,9 @@ module Google
|
|
1217
1240
|
# Update properties of this object
|
1218
1241
|
def update!(**args)
|
1219
1242
|
@end_time = args[:end_time] if args.key?(:end_time)
|
1243
|
+
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
1220
1244
|
@original_request = args[:original_request] if args.key?(:original_request)
|
1245
|
+
@request_time = args[:request_time] if args.key?(:request_time)
|
1221
1246
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1222
1247
|
end
|
1223
1248
|
end
|
@@ -1259,17 +1284,28 @@ module Google
|
|
1259
1284
|
class CreateMaterializedViewMetadata
|
1260
1285
|
include Google::Apis::Core::Hashable
|
1261
1286
|
|
1262
|
-
# If set, the time at which this operation finished or was canceled.
|
1287
|
+
# If set, the time at which this operation finished or was canceled. DEPRECATED:
|
1288
|
+
# Use finish_time instead.
|
1263
1289
|
# Corresponds to the JSON property `endTime`
|
1264
1290
|
# @return [String]
|
1265
1291
|
attr_accessor :end_time
|
1266
1292
|
|
1293
|
+
# The time at which the operation failed or was completed successfully.
|
1294
|
+
# Corresponds to the JSON property `finishTime`
|
1295
|
+
# @return [String]
|
1296
|
+
attr_accessor :finish_time
|
1297
|
+
|
1267
1298
|
# Request message for BigtableInstanceAdmin.CreateMaterializedView.
|
1268
1299
|
# Corresponds to the JSON property `originalRequest`
|
1269
1300
|
# @return [Google::Apis::BigtableadminV2::CreateMaterializedViewRequest]
|
1270
1301
|
attr_accessor :original_request
|
1271
1302
|
|
1272
|
-
# The time at which
|
1303
|
+
# The time at which the original request was received.
|
1304
|
+
# Corresponds to the JSON property `requestTime`
|
1305
|
+
# @return [String]
|
1306
|
+
attr_accessor :request_time
|
1307
|
+
|
1308
|
+
# The time at which this operation started. DEPRECATED: Use request_time instead.
|
1273
1309
|
# Corresponds to the JSON property `startTime`
|
1274
1310
|
# @return [String]
|
1275
1311
|
attr_accessor :start_time
|
@@ -1281,7 +1317,9 @@ module Google
|
|
1281
1317
|
# Update properties of this object
|
1282
1318
|
def update!(**args)
|
1283
1319
|
@end_time = args[:end_time] if args.key?(:end_time)
|
1320
|
+
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
1284
1321
|
@original_request = args[:original_request] if args.key?(:original_request)
|
1322
|
+
@request_time = args[:request_time] if args.key?(:request_time)
|
1285
1323
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1286
1324
|
end
|
1287
1325
|
end
|
@@ -1323,10 +1361,10 @@ module Google
|
|
1323
1361
|
class CreateSchemaBundleMetadata
|
1324
1362
|
include Google::Apis::Core::Hashable
|
1325
1363
|
|
1326
|
-
#
|
1327
|
-
# Corresponds to the JSON property `
|
1364
|
+
# The time at which the operation failed or was completed successfully.
|
1365
|
+
# Corresponds to the JSON property `finishTime`
|
1328
1366
|
# @return [String]
|
1329
|
-
attr_accessor :
|
1367
|
+
attr_accessor :finish_time
|
1330
1368
|
|
1331
1369
|
# The unique name identifying this schema bundle. Values are of the form `
|
1332
1370
|
# projects/`project`/instances/`instance`/tables/`table`/schemaBundles/`
|
@@ -1335,10 +1373,10 @@ module Google
|
|
1335
1373
|
# @return [String]
|
1336
1374
|
attr_accessor :name
|
1337
1375
|
|
1338
|
-
# The time at which
|
1339
|
-
# Corresponds to the JSON property `
|
1376
|
+
# The time at which the original request was received.
|
1377
|
+
# Corresponds to the JSON property `requestTime`
|
1340
1378
|
# @return [String]
|
1341
|
-
attr_accessor :
|
1379
|
+
attr_accessor :request_time
|
1342
1380
|
|
1343
1381
|
def initialize(**args)
|
1344
1382
|
update!(**args)
|
@@ -1346,9 +1384,9 @@ module Google
|
|
1346
1384
|
|
1347
1385
|
# Update properties of this object
|
1348
1386
|
def update!(**args)
|
1349
|
-
@
|
1387
|
+
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
1350
1388
|
@name = args[:name] if args.key?(:name)
|
1351
|
-
@
|
1389
|
+
@request_time = args[:request_time] if args.key?(:request_time)
|
1352
1390
|
end
|
1353
1391
|
end
|
1354
1392
|
|
@@ -1789,8 +1827,8 @@ module Google
|
|
1789
1827
|
# that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
|
1790
1828
|
# sort order is important, for example when encoding keys. - Distinct: In this
|
1791
1829
|
# mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
|
1792
|
-
# However, the converse is not guaranteed. For example, both
|
1793
|
-
# '2'
|
1830
|
+
# However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
|
1831
|
+
# '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
|
1794
1832
|
# value. The API clearly documents which mode is used wherever an encoding can
|
1795
1833
|
# be configured. Each encoding also documents which values are supported in
|
1796
1834
|
# which modes. For example, when encoding INT64 as a numeric STRING, negative
|
@@ -1821,8 +1859,8 @@ module Google
|
|
1821
1859
|
# that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
|
1822
1860
|
# sort order is important, for example when encoding keys. - Distinct: In this
|
1823
1861
|
# mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
|
1824
|
-
# However, the converse is not guaranteed. For example, both
|
1825
|
-
# '2'
|
1862
|
+
# However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
|
1863
|
+
# '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
|
1826
1864
|
# value. The API clearly documents which mode is used wherever an encoding can
|
1827
1865
|
# be configured. Each encoding also documents which values are supported in
|
1828
1866
|
# which modes. For example, when encoding INT64 as a numeric STRING, negative
|
@@ -1926,8 +1964,8 @@ module Google
|
|
1926
1964
|
# that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
|
1927
1965
|
# sort order is important, for example when encoding keys. - Distinct: In this
|
1928
1966
|
# mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
|
1929
|
-
# However, the converse is not guaranteed. For example, both
|
1930
|
-
# '2'
|
1967
|
+
# However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
|
1968
|
+
# '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
|
1931
1969
|
# value. The API clearly documents which mode is used wherever an encoding can
|
1932
1970
|
# be configured. Each encoding also documents which values are supported in
|
1933
1971
|
# which modes. For example, when encoding INT64 as a numeric STRING, negative
|
@@ -2005,7 +2043,7 @@ module Google
|
|
2005
2043
|
include Google::Apis::Core::Hashable
|
2006
2044
|
|
2007
2045
|
# If set, allows NULL values to be encoded as the empty string "". The actual
|
2008
|
-
# empty string, or any value which only contains the null byte 0x00
|
2046
|
+
# empty string, or any value which only contains the null byte `0x00`, has one
|
2009
2047
|
# more null byte appended.
|
2010
2048
|
# Corresponds to the JSON property `escapeNulls`
|
2011
2049
|
# @return [Boolean]
|
@@ -2191,8 +2229,8 @@ module Google
|
|
2191
2229
|
# that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
|
2192
2230
|
# sort order is important, for example when encoding keys. - Distinct: In this
|
2193
2231
|
# mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
|
2194
|
-
# However, the converse is not guaranteed. For example, both
|
2195
|
-
# '2'
|
2232
|
+
# However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
|
2233
|
+
# '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
|
2196
2234
|
# value. The API clearly documents which mode is used wherever an encoding can
|
2197
2235
|
# be configured. Each encoding also documents which values are supported in
|
2198
2236
|
# which modes. For example, when encoding INT64 as a numeric STRING, negative
|
@@ -2211,8 +2249,8 @@ module Google
|
|
2211
2249
|
# that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
|
2212
2250
|
# sort order is important, for example when encoding keys. - Distinct: In this
|
2213
2251
|
# mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
|
2214
|
-
# However, the converse is not guaranteed. For example, both
|
2215
|
-
# '2'
|
2252
|
+
# However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
|
2253
|
+
# '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
|
2216
2254
|
# value. The API clearly documents which mode is used wherever an encoding can
|
2217
2255
|
# be configured. Each encoding also documents which values are supported in
|
2218
2256
|
# which modes. For example, when encoding INT64 as a numeric STRING, negative
|
@@ -2318,8 +2356,8 @@ module Google
|
|
2318
2356
|
# NULL values to be encoded as the empty string "". The actual empty string, or
|
2319
2357
|
# any value where every character equals `null_escape_char`, has one more `
|
2320
2358
|
# null_escape_char` appended. If `null_escape_char` is set and does not equal
|
2321
|
-
# the ASCII null character 0x00
|
2322
|
-
# .
|
2359
|
+
# the ASCII null character `0x00`, then the encoding will not support sorted
|
2360
|
+
# mode. .
|
2323
2361
|
# Corresponds to the JSON property `nullEscapeChar`
|
2324
2362
|
# @return [String]
|
2325
2363
|
attr_accessor :null_escape_char
|
@@ -2383,35 +2421,45 @@ module Google
|
|
2383
2421
|
# delimiter`. Sorted mode: - Fields are encoded in sorted mode. - Encoded field
|
2384
2422
|
# values must not contain any bytes <= `delimiter[0]` - Element-wise order is
|
2385
2423
|
# preserved: `A < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`, etc.
|
2386
|
-
# Strict prefixes sort first.
|
2387
|
-
#
|
2424
|
+
# Strict prefixes sort first. - This encoding does not support `DESC` field
|
2425
|
+
# ordering. Distinct mode: - Fields are encoded in distinct mode. - Encoded
|
2426
|
+
# field values must not contain `delimiter[0]`.
|
2388
2427
|
# Corresponds to the JSON property `delimitedBytes`
|
2389
2428
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingDelimitedBytes]
|
2390
2429
|
attr_accessor :delimited_bytes
|
2391
2430
|
|
2392
|
-
# Fields are encoded independently
|
2393
|
-
#
|
2394
|
-
#
|
2395
|
-
#
|
2396
|
-
#
|
2397
|
-
#
|
2398
|
-
#
|
2399
|
-
#
|
2400
|
-
#
|
2401
|
-
#
|
2402
|
-
#
|
2403
|
-
#
|
2404
|
-
#
|
2405
|
-
#
|
2406
|
-
#
|
2407
|
-
#
|
2408
|
-
#
|
2409
|
-
#
|
2431
|
+
# Fields are encoded independently, then escaped and delimited by appling the
|
2432
|
+
# following rules in order: - While the last remaining field is `ASC` or `
|
2433
|
+
# UNSPECIFIED`, and encodes to the empty string "", remove it. - In each
|
2434
|
+
# remaining field, replace all null bytes `0x00` with the fixed byte pair ``0x00,
|
2435
|
+
# 0xFF``. - If any remaining field encodes to the empty string "", replace it
|
2436
|
+
# with the fixed byte pair ``0x00, 0x00``. - Append the fixed byte pair ``0x00,
|
2437
|
+
# 0x01`` to each remaining field, except for the last remaining field if it is `
|
2438
|
+
# ASC`. - Bitwise negate all `DESC` fields. - Concatenate the results, or emit
|
2439
|
+
# the fixed byte pair ``0x00, 0x00`` if there are no remaining fields to
|
2440
|
+
# concatenate. Examples: ``` - STRUCT() -> "\00\00" - STRUCT("") -> "\00\00" -
|
2441
|
+
# STRUCT("", "") -> "\00\00" - STRUCT("", "B") -> "\00\00" + "\00\01" + "B" -
|
2442
|
+
# STRUCT("A", "") -> "A" - STRUCT("", "B", "") -> "\00\00" + "\00\01" + "B" -
|
2443
|
+
# STRUCT("A", "", "C") -> "A" + "\00\01" + "\00\00" + "\00\01" + "C" ```
|
2444
|
+
# Examples for struct with `DESC` fields: ``` - STRUCT("" DESC) -> "\xFF\xFF" + "
|
2445
|
+
# \xFF\xFE" - STRUCT("" DESC, "") -> "\xFF\xFF" + "\xFF\xFE" - STRUCT("" DESC, ""
|
2446
|
+
# , "") -> "\xFF\xFF" + "\xFF\xFE" - STRUCT("" DESC, "A") -> "\xFF\xFF" + "\xFF\
|
2447
|
+
# xFE" + "A" - STRUCT("A", "" DESC, "") -> "A" + "\00\01" + "\xFF\xFF" + "\xFF\
|
2448
|
+
# xFE" - STRUCT("", "A" DESC) -> "\x00\x00" + "\x00\x01" + "\xBE" + "\xFF\xFE" ``
|
2449
|
+
# ` Since null bytes are always escaped, this encoding can cause size blowup for
|
2450
|
+
# encodings like `Int64.BigEndianBytes` that are likely to produce many such
|
2451
|
+
# bytes. Sorted mode: - Fields are encoded in sorted mode. - All values
|
2452
|
+
# supported by the field encodings are allowed. - Fields with unset or `
|
2453
|
+
# UNSPECIFIED` order are treated as `ASC`. - Element-wise order is preserved: `A
|
2454
|
+
# < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`, etc. Strict
|
2455
|
+
# prefixes sort first. Distinct mode: - Fields are encoded in distinct mode. -
|
2456
|
+
# All values supported by the field encodings are allowed.
|
2410
2457
|
# Corresponds to the JSON property `orderedCodeBytes`
|
2411
2458
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingOrderedCodeBytes]
|
2412
2459
|
attr_accessor :ordered_code_bytes
|
2413
2460
|
|
2414
2461
|
# Uses the encoding of `fields[0].type` as-is. Only valid if `fields.size == 1`.
|
2462
|
+
# This encoding does not support `DESC` field ordering.
|
2415
2463
|
# Corresponds to the JSON property `singleton`
|
2416
2464
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingSingleton]
|
2417
2465
|
attr_accessor :singleton
|
@@ -2433,8 +2481,9 @@ module Google
|
|
2433
2481
|
# delimiter`. Sorted mode: - Fields are encoded in sorted mode. - Encoded field
|
2434
2482
|
# values must not contain any bytes <= `delimiter[0]` - Element-wise order is
|
2435
2483
|
# preserved: `A < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`, etc.
|
2436
|
-
# Strict prefixes sort first.
|
2437
|
-
#
|
2484
|
+
# Strict prefixes sort first. - This encoding does not support `DESC` field
|
2485
|
+
# ordering. Distinct mode: - Fields are encoded in distinct mode. - Encoded
|
2486
|
+
# field values must not contain `delimiter[0]`.
|
2438
2487
|
class GoogleBigtableAdminV2TypeStructEncodingDelimitedBytes
|
2439
2488
|
include Google::Apis::Core::Hashable
|
2440
2489
|
|
@@ -2455,24 +2504,32 @@ module Google
|
|
2455
2504
|
end
|
2456
2505
|
end
|
2457
2506
|
|
2458
|
-
# Fields are encoded independently
|
2459
|
-
#
|
2460
|
-
#
|
2461
|
-
#
|
2462
|
-
#
|
2463
|
-
#
|
2464
|
-
#
|
2465
|
-
#
|
2466
|
-
#
|
2467
|
-
#
|
2468
|
-
#
|
2469
|
-
#
|
2470
|
-
#
|
2471
|
-
#
|
2472
|
-
#
|
2473
|
-
#
|
2474
|
-
#
|
2475
|
-
#
|
2507
|
+
# Fields are encoded independently, then escaped and delimited by appling the
|
2508
|
+
# following rules in order: - While the last remaining field is `ASC` or `
|
2509
|
+
# UNSPECIFIED`, and encodes to the empty string "", remove it. - In each
|
2510
|
+
# remaining field, replace all null bytes `0x00` with the fixed byte pair ``0x00,
|
2511
|
+
# 0xFF``. - If any remaining field encodes to the empty string "", replace it
|
2512
|
+
# with the fixed byte pair ``0x00, 0x00``. - Append the fixed byte pair ``0x00,
|
2513
|
+
# 0x01`` to each remaining field, except for the last remaining field if it is `
|
2514
|
+
# ASC`. - Bitwise negate all `DESC` fields. - Concatenate the results, or emit
|
2515
|
+
# the fixed byte pair ``0x00, 0x00`` if there are no remaining fields to
|
2516
|
+
# concatenate. Examples: ``` - STRUCT() -> "\00\00" - STRUCT("") -> "\00\00" -
|
2517
|
+
# STRUCT("", "") -> "\00\00" - STRUCT("", "B") -> "\00\00" + "\00\01" + "B" -
|
2518
|
+
# STRUCT("A", "") -> "A" - STRUCT("", "B", "") -> "\00\00" + "\00\01" + "B" -
|
2519
|
+
# STRUCT("A", "", "C") -> "A" + "\00\01" + "\00\00" + "\00\01" + "C" ```
|
2520
|
+
# Examples for struct with `DESC` fields: ``` - STRUCT("" DESC) -> "\xFF\xFF" + "
|
2521
|
+
# \xFF\xFE" - STRUCT("" DESC, "") -> "\xFF\xFF" + "\xFF\xFE" - STRUCT("" DESC, ""
|
2522
|
+
# , "") -> "\xFF\xFF" + "\xFF\xFE" - STRUCT("" DESC, "A") -> "\xFF\xFF" + "\xFF\
|
2523
|
+
# xFE" + "A" - STRUCT("A", "" DESC, "") -> "A" + "\00\01" + "\xFF\xFF" + "\xFF\
|
2524
|
+
# xFE" - STRUCT("", "A" DESC) -> "\x00\x00" + "\x00\x01" + "\xBE" + "\xFF\xFE" ``
|
2525
|
+
# ` Since null bytes are always escaped, this encoding can cause size blowup for
|
2526
|
+
# encodings like `Int64.BigEndianBytes` that are likely to produce many such
|
2527
|
+
# bytes. Sorted mode: - Fields are encoded in sorted mode. - All values
|
2528
|
+
# supported by the field encodings are allowed. - Fields with unset or `
|
2529
|
+
# UNSPECIFIED` order are treated as `ASC`. - Element-wise order is preserved: `A
|
2530
|
+
# < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`, etc. Strict
|
2531
|
+
# prefixes sort first. Distinct mode: - Fields are encoded in distinct mode. -
|
2532
|
+
# All values supported by the field encodings are allowed.
|
2476
2533
|
class GoogleBigtableAdminV2TypeStructEncodingOrderedCodeBytes
|
2477
2534
|
include Google::Apis::Core::Hashable
|
2478
2535
|
|
@@ -2486,6 +2543,7 @@ module Google
|
|
2486
2543
|
end
|
2487
2544
|
|
2488
2545
|
# Uses the encoding of `fields[0].type` as-is. Only valid if `fields.size == 1`.
|
2546
|
+
# This encoding does not support `DESC` field ordering.
|
2489
2547
|
class GoogleBigtableAdminV2TypeStructEncodingSingleton
|
2490
2548
|
include Google::Apis::Core::Hashable
|
2491
2549
|
|
@@ -2517,8 +2575,8 @@ module Google
|
|
2517
2575
|
# that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
|
2518
2576
|
# sort order is important, for example when encoding keys. - Distinct: In this
|
2519
2577
|
# mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
|
2520
|
-
# However, the converse is not guaranteed. For example, both
|
2521
|
-
# '2'
|
2578
|
+
# However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
|
2579
|
+
# '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
|
2522
2580
|
# value. The API clearly documents which mode is used wherever an encoding can
|
2523
2581
|
# be configured. Each encoding also documents which values are supported in
|
2524
2582
|
# which modes. For example, when encoding INT64 as a numeric STRING, negative
|
@@ -3177,7 +3235,8 @@ module Google
|
|
3177
3235
|
class MaterializedView
|
3178
3236
|
include Google::Apis::Core::Hashable
|
3179
3237
|
|
3180
|
-
# Set to true to make the MaterializedView protected against deletion.
|
3238
|
+
# Set to true to make the MaterializedView protected against deletion. Views: `
|
3239
|
+
# SCHEMA_VIEW`, `REPLICATION_VIEW`, `FULL`.
|
3181
3240
|
# Corresponds to the JSON property `deletionProtection`
|
3182
3241
|
# @return [Boolean]
|
3183
3242
|
attr_accessor :deletion_protection
|
@@ -3185,18 +3244,21 @@ module Google
|
|
3185
3244
|
|
3186
3245
|
# Optional. The etag for this materialized view. This may be sent on update
|
3187
3246
|
# requests to ensure that the client has an up-to-date value before proceeding.
|
3188
|
-
# The server returns an ABORTED error on a mismatched etag.
|
3247
|
+
# The server returns an ABORTED error on a mismatched etag. Views: `SCHEMA_VIEW`,
|
3248
|
+
# `REPLICATION_VIEW`, `FULL`.
|
3189
3249
|
# Corresponds to the JSON property `etag`
|
3190
3250
|
# @return [String]
|
3191
3251
|
attr_accessor :etag
|
3192
3252
|
|
3193
3253
|
# Identifier. The unique name of the materialized view. Format: `projects/`
|
3194
|
-
# project`/instances/`instance`/materializedViews/`materialized_view``
|
3254
|
+
# project`/instances/`instance`/materializedViews/`materialized_view`` Views: `
|
3255
|
+
# SCHEMA_VIEW`, `REPLICATION_VIEW`, `FULL`.
|
3195
3256
|
# Corresponds to the JSON property `name`
|
3196
3257
|
# @return [String]
|
3197
3258
|
attr_accessor :name
|
3198
3259
|
|
3199
|
-
# Required. Immutable. The materialized view's select query.
|
3260
|
+
# Required. Immutable. The materialized view's select query. Views: `SCHEMA_VIEW`
|
3261
|
+
# , `FULL`.
|
3200
3262
|
# Corresponds to the JSON property `query`
|
3201
3263
|
# @return [String]
|
3202
3264
|
attr_accessor :query
|
@@ -4271,8 +4333,8 @@ module Google
|
|
4271
4333
|
# that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
|
4272
4334
|
# sort order is important, for example when encoding keys. - Distinct: In this
|
4273
4335
|
# mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
|
4274
|
-
# However, the converse is not guaranteed. For example, both
|
4275
|
-
# '2'
|
4336
|
+
# However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
|
4337
|
+
# '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
|
4276
4338
|
# value. The API clearly documents which mode is used wherever an encoding can
|
4277
4339
|
# be configured. Each encoding also documents which values are supported in
|
4278
4340
|
# which modes. For example, when encoding INT64 as a numeric STRING, negative
|
@@ -4390,17 +4452,28 @@ module Google
|
|
4390
4452
|
class UndeleteTableMetadata
|
4391
4453
|
include Google::Apis::Core::Hashable
|
4392
4454
|
|
4393
|
-
# If set, the time at which this operation finished or was cancelled.
|
4455
|
+
# If set, the time at which this operation finished or was cancelled. DEPRECATED:
|
4456
|
+
# Use finish_time instead.
|
4394
4457
|
# Corresponds to the JSON property `endTime`
|
4395
4458
|
# @return [String]
|
4396
4459
|
attr_accessor :end_time
|
4397
4460
|
|
4461
|
+
# The time at which the operation failed or was completed successfully.
|
4462
|
+
# Corresponds to the JSON property `finishTime`
|
4463
|
+
# @return [String]
|
4464
|
+
attr_accessor :finish_time
|
4465
|
+
|
4398
4466
|
# The name of the table being restored.
|
4399
4467
|
# Corresponds to the JSON property `name`
|
4400
4468
|
# @return [String]
|
4401
4469
|
attr_accessor :name
|
4402
4470
|
|
4403
|
-
# The time at which
|
4471
|
+
# The time at which the original request was received.
|
4472
|
+
# Corresponds to the JSON property `requestTime`
|
4473
|
+
# @return [String]
|
4474
|
+
attr_accessor :request_time
|
4475
|
+
|
4476
|
+
# The time at which this operation started. DEPRECATED: Use request_time instead.
|
4404
4477
|
# Corresponds to the JSON property `startTime`
|
4405
4478
|
# @return [String]
|
4406
4479
|
attr_accessor :start_time
|
@@ -4412,7 +4485,9 @@ module Google
|
|
4412
4485
|
# Update properties of this object
|
4413
4486
|
def update!(**args)
|
4414
4487
|
@end_time = args[:end_time] if args.key?(:end_time)
|
4488
|
+
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
4415
4489
|
@name = args[:name] if args.key?(:name)
|
4490
|
+
@request_time = args[:request_time] if args.key?(:request_time)
|
4416
4491
|
@start_time = args[:start_time] if args.key?(:start_time)
|
4417
4492
|
end
|
4418
4493
|
end
|
@@ -4597,17 +4672,27 @@ module Google
|
|
4597
4672
|
class UpdateLogicalViewMetadata
|
4598
4673
|
include Google::Apis::Core::Hashable
|
4599
4674
|
|
4600
|
-
#
|
4675
|
+
# DEPRECATED: Use finish_time instead.
|
4601
4676
|
# Corresponds to the JSON property `endTime`
|
4602
4677
|
# @return [String]
|
4603
4678
|
attr_accessor :end_time
|
4604
4679
|
|
4680
|
+
# The time at which the operation failed or was completed successfully.
|
4681
|
+
# Corresponds to the JSON property `finishTime`
|
4682
|
+
# @return [String]
|
4683
|
+
attr_accessor :finish_time
|
4684
|
+
|
4605
4685
|
# Request message for BigtableInstanceAdmin.UpdateLogicalView.
|
4606
4686
|
# Corresponds to the JSON property `originalRequest`
|
4607
4687
|
# @return [Google::Apis::BigtableadminV2::UpdateLogicalViewRequest]
|
4608
4688
|
attr_accessor :original_request
|
4609
4689
|
|
4610
|
-
# The time at which
|
4690
|
+
# The time at which the original request was received.
|
4691
|
+
# Corresponds to the JSON property `requestTime`
|
4692
|
+
# @return [String]
|
4693
|
+
attr_accessor :request_time
|
4694
|
+
|
4695
|
+
# DEPRECATED: Use request_time instead.
|
4611
4696
|
# Corresponds to the JSON property `startTime`
|
4612
4697
|
# @return [String]
|
4613
4698
|
attr_accessor :start_time
|
@@ -4619,7 +4704,9 @@ module Google
|
|
4619
4704
|
# Update properties of this object
|
4620
4705
|
def update!(**args)
|
4621
4706
|
@end_time = args[:end_time] if args.key?(:end_time)
|
4707
|
+
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
4622
4708
|
@original_request = args[:original_request] if args.key?(:original_request)
|
4709
|
+
@request_time = args[:request_time] if args.key?(:request_time)
|
4623
4710
|
@start_time = args[:start_time] if args.key?(:start_time)
|
4624
4711
|
end
|
4625
4712
|
end
|
@@ -4653,10 +4740,10 @@ module Google
|
|
4653
4740
|
class UpdateSchemaBundleMetadata
|
4654
4741
|
include Google::Apis::Core::Hashable
|
4655
4742
|
|
4656
|
-
#
|
4657
|
-
# Corresponds to the JSON property `
|
4743
|
+
# The time at which the operation failed or was completed successfully.
|
4744
|
+
# Corresponds to the JSON property `finishTime`
|
4658
4745
|
# @return [String]
|
4659
|
-
attr_accessor :
|
4746
|
+
attr_accessor :finish_time
|
4660
4747
|
|
4661
4748
|
# The unique name identifying this schema bundle. Values are of the form `
|
4662
4749
|
# projects/`project`/instances/`instance`/tables/`table`/schemaBundles/`
|
@@ -4665,10 +4752,10 @@ module Google
|
|
4665
4752
|
# @return [String]
|
4666
4753
|
attr_accessor :name
|
4667
4754
|
|
4668
|
-
# The time at which
|
4669
|
-
# Corresponds to the JSON property `
|
4755
|
+
# The time at which the original request was received.
|
4756
|
+
# Corresponds to the JSON property `requestTime`
|
4670
4757
|
# @return [String]
|
4671
|
-
attr_accessor :
|
4758
|
+
attr_accessor :request_time
|
4672
4759
|
|
4673
4760
|
def initialize(**args)
|
4674
4761
|
update!(**args)
|
@@ -4676,9 +4763,9 @@ module Google
|
|
4676
4763
|
|
4677
4764
|
# Update properties of this object
|
4678
4765
|
def update!(**args)
|
4679
|
-
@
|
4766
|
+
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
4680
4767
|
@name = args[:name] if args.key?(:name)
|
4681
|
-
@
|
4768
|
+
@request_time = args[:request_time] if args.key?(:request_time)
|
4682
4769
|
end
|
4683
4770
|
end
|
4684
4771
|
|
@@ -4686,17 +4773,28 @@ module Google
|
|
4686
4773
|
class UpdateTableMetadata
|
4687
4774
|
include Google::Apis::Core::Hashable
|
4688
4775
|
|
4689
|
-
# If set, the time at which this operation finished or was canceled.
|
4776
|
+
# If set, the time at which this operation finished or was canceled. DEPRECATED:
|
4777
|
+
# Use finish_time instead.
|
4690
4778
|
# Corresponds to the JSON property `endTime`
|
4691
4779
|
# @return [String]
|
4692
4780
|
attr_accessor :end_time
|
4693
4781
|
|
4782
|
+
# The time at which the operation failed or was completed successfully.
|
4783
|
+
# Corresponds to the JSON property `finishTime`
|
4784
|
+
# @return [String]
|
4785
|
+
attr_accessor :finish_time
|
4786
|
+
|
4694
4787
|
# The name of the table being updated.
|
4695
4788
|
# Corresponds to the JSON property `name`
|
4696
4789
|
# @return [String]
|
4697
4790
|
attr_accessor :name
|
4698
4791
|
|
4699
|
-
# The time at which
|
4792
|
+
# The time at which the original request was received.
|
4793
|
+
# Corresponds to the JSON property `requestTime`
|
4794
|
+
# @return [String]
|
4795
|
+
attr_accessor :request_time
|
4796
|
+
|
4797
|
+
# The time at which this operation started. DEPRECATED: Use request_time instead.
|
4700
4798
|
# Corresponds to the JSON property `startTime`
|
4701
4799
|
# @return [String]
|
4702
4800
|
attr_accessor :start_time
|
@@ -4708,7 +4806,9 @@ module Google
|
|
4708
4806
|
# Update properties of this object
|
4709
4807
|
def update!(**args)
|
4710
4808
|
@end_time = args[:end_time] if args.key?(:end_time)
|
4809
|
+
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
4711
4810
|
@name = args[:name] if args.key?(:name)
|
4811
|
+
@request_time = args[:request_time] if args.key?(:request_time)
|
4712
4812
|
@start_time = args[:start_time] if args.key?(:start_time)
|
4713
4813
|
end
|
4714
4814
|
end
|
@@ -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.78.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 = "20250912"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1104,7 +1104,9 @@ module Google
|
|
1104
1104
|
# @private
|
1105
1105
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1106
1106
|
property :end_time, as: 'endTime'
|
1107
|
+
property :finish_time, as: 'finishTime'
|
1107
1108
|
property :name, as: 'name'
|
1109
|
+
property :request_time, as: 'requestTime'
|
1108
1110
|
property :source_table, as: 'sourceTable'
|
1109
1111
|
property :start_time, as: 'startTime'
|
1110
1112
|
end
|
@@ -1158,8 +1160,10 @@ module Google
|
|
1158
1160
|
# @private
|
1159
1161
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1160
1162
|
property :end_time, as: 'endTime'
|
1163
|
+
property :finish_time, as: 'finishTime'
|
1161
1164
|
property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV2::CreateLogicalViewRequest, decorator: Google::Apis::BigtableadminV2::CreateLogicalViewRequest::Representation
|
1162
1165
|
|
1166
|
+
property :request_time, as: 'requestTime'
|
1163
1167
|
property :start_time, as: 'startTime'
|
1164
1168
|
end
|
1165
1169
|
end
|
@@ -1178,8 +1182,10 @@ module Google
|
|
1178
1182
|
# @private
|
1179
1183
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1180
1184
|
property :end_time, as: 'endTime'
|
1185
|
+
property :finish_time, as: 'finishTime'
|
1181
1186
|
property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV2::CreateMaterializedViewRequest, decorator: Google::Apis::BigtableadminV2::CreateMaterializedViewRequest::Representation
|
1182
1187
|
|
1188
|
+
property :request_time, as: 'requestTime'
|
1183
1189
|
property :start_time, as: 'startTime'
|
1184
1190
|
end
|
1185
1191
|
end
|
@@ -1197,9 +1203,9 @@ module Google
|
|
1197
1203
|
class CreateSchemaBundleMetadata
|
1198
1204
|
# @private
|
1199
1205
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1200
|
-
property :
|
1206
|
+
property :finish_time, as: 'finishTime'
|
1201
1207
|
property :name, as: 'name'
|
1202
|
-
property :
|
1208
|
+
property :request_time, as: 'requestTime'
|
1203
1209
|
end
|
1204
1210
|
end
|
1205
1211
|
|
@@ -2066,7 +2072,9 @@ module Google
|
|
2066
2072
|
# @private
|
2067
2073
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2068
2074
|
property :end_time, as: 'endTime'
|
2075
|
+
property :finish_time, as: 'finishTime'
|
2069
2076
|
property :name, as: 'name'
|
2077
|
+
property :request_time, as: 'requestTime'
|
2070
2078
|
property :start_time, as: 'startTime'
|
2071
2079
|
end
|
2072
2080
|
end
|
@@ -2135,8 +2143,10 @@ module Google
|
|
2135
2143
|
# @private
|
2136
2144
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2137
2145
|
property :end_time, as: 'endTime'
|
2146
|
+
property :finish_time, as: 'finishTime'
|
2138
2147
|
property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV2::UpdateLogicalViewRequest, decorator: Google::Apis::BigtableadminV2::UpdateLogicalViewRequest::Representation
|
2139
2148
|
|
2149
|
+
property :request_time, as: 'requestTime'
|
2140
2150
|
property :start_time, as: 'startTime'
|
2141
2151
|
end
|
2142
2152
|
end
|
@@ -2153,9 +2163,9 @@ module Google
|
|
2153
2163
|
class UpdateSchemaBundleMetadata
|
2154
2164
|
# @private
|
2155
2165
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2156
|
-
property :
|
2166
|
+
property :finish_time, as: 'finishTime'
|
2157
2167
|
property :name, as: 'name'
|
2158
|
-
property :
|
2168
|
+
property :request_time, as: 'requestTime'
|
2159
2169
|
end
|
2160
2170
|
end
|
2161
2171
|
|
@@ -2163,7 +2173,9 @@ module Google
|
|
2163
2173
|
# @private
|
2164
2174
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2165
2175
|
property :end_time, as: 'endTime'
|
2176
|
+
property :finish_time, as: 'finishTime'
|
2166
2177
|
property :name, as: 'name'
|
2178
|
+
property :request_time, as: 'requestTime'
|
2167
2179
|
property :start_time, as: 'startTime'
|
2168
2180
|
end
|
2169
2181
|
end
|
@@ -1752,7 +1752,8 @@ module Google
|
|
1752
1752
|
# Updates a materialized view within an instance.
|
1753
1753
|
# @param [String] name
|
1754
1754
|
# Identifier. The unique name of the materialized view. Format: `projects/`
|
1755
|
-
# project`/instances/`instance`/materializedViews/`materialized_view``
|
1755
|
+
# project`/instances/`instance`/materializedViews/`materialized_view`` Views: `
|
1756
|
+
# SCHEMA_VIEW`, `REPLICATION_VIEW`, `FULL`.
|
1756
1757
|
# @param [Google::Apis::BigtableadminV2::MaterializedView] materialized_view_object
|
1757
1758
|
# @param [String] update_mask
|
1758
1759
|
# Optional. The list of fields to update.
|
@@ -3001,8 +3002,8 @@ module Google
|
|
3001
3002
|
# @param [String] name
|
3002
3003
|
# The resource that owns the locations collection, if applicable.
|
3003
3004
|
# @param [Array<String>, String] extra_location_types
|
3004
|
-
# Optional.
|
3005
|
-
#
|
3005
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
3006
|
+
# field which is primarily intended for internal usage.
|
3006
3007
|
# @param [String] filter
|
3007
3008
|
# A filter to narrow down results to a preferred subset. The filtering language
|
3008
3009
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
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.78.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.78.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:
|