google-apis-bigtableadmin_v2 0.77.0 → 0.79.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: a3d88e6c45c9d3a83661cd25c92a0756a17121bcd4abdb60de457c5e83f10911
4
- data.tar.gz: f34780ace1a9befeb575d51ed8ae00bcf76c89c4f2311d9b50b8dfe6ca9e29a4
3
+ metadata.gz: bab7cb0f2835495bc1535ce179e10fc1dd213ed26493fd7ade98b449a644ca05
4
+ data.tar.gz: 977c241823c1d39ad1c884c6b12ef1339ebc52ecb31c02b0317ad96095f617a2
5
5
  SHA512:
6
- metadata.gz: 6a0ea3b87caa63389e3b2f2036b666042829c1fec9a3f3099e3bd3239c0b93a6beb2a393bf1e871d23c72978df34506c892f145ba8cc529f1bd257f448b66967
7
- data.tar.gz: 7cab32cf8b42b6046c45d376c4aad7fe0cf9120b30bfba9c782856c973de1d0ca283c09f0f491cbfd0c4bcd84107169464c0b718a27c4fc014e2d1fe516370fb
6
+ metadata.gz: 7e14da72469e04584399899e66e089a53eaa1be1fb38d3515e06a99a1993ed5ce96161d26635e3dbab81cbeba1d3f9b1a92103186d3e6bf4f7b67ccf454c3f78
7
+ data.tar.gz: 40e2f74c8e4c7276e3eb2efe9ca2d142ca6374c1b730505bab1e3db3b62ed1e65e982cb9e7b55d94236d9934e1ad28dcf149c74b16a186952b4f5787aee247b6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-bigtableadmin_v2
2
2
 
3
+ ### v0.79.0 (2025-10-19)
4
+
5
+ * Regenerated from discovery document revision 20251012
6
+
7
+ ### v0.78.0 (2025-09-21)
8
+
9
+ * Regenerated from discovery document revision 20250912
10
+
3
11
  ### v0.77.0 (2025-09-14)
4
12
 
5
13
  * Regenerated from discovery document revision 20250828
@@ -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 "`'foo': '1', 'bar':
796
- # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
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
- # If set, the time at which this operation finished or was canceled.
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 this operation started.
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 this operation started.
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
- # If set, the time at which this operation finished or was canceled.
1327
- # Corresponds to the JSON property `endTime`
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 :end_time
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 this operation started.
1339
- # Corresponds to the JSON property `startTime`
1376
+ # The time at which the original request was received.
1377
+ # Corresponds to the JSON property `requestTime`
1340
1378
  # @return [String]
1341
- attr_accessor :start_time
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
- @end_time = args[:end_time] if args.key?(:end_time)
1387
+ @finish_time = args[:finish_time] if args.key?(:finish_time)
1350
1388
  @name = args[:name] if args.key?(:name)
1351
- @start_time = args[:start_time] if args.key?(:start_time)
1389
+ @request_time = args[:request_time] if args.key?(:request_time)
1352
1390
  end
1353
1391
  end
1354
1392
 
@@ -1765,6 +1803,25 @@ module Google
1765
1803
  end
1766
1804
  end
1767
1805
 
1806
+ # The state of a materialized view's data in a particular cluster.
1807
+ class GoogleBigtableAdminV2MaterializedViewClusterState
1808
+ include Google::Apis::Core::Hashable
1809
+
1810
+ # Output only. The state of the materialized view in this cluster.
1811
+ # Corresponds to the JSON property `replicationState`
1812
+ # @return [String]
1813
+ attr_accessor :replication_state
1814
+
1815
+ def initialize(**args)
1816
+ update!(**args)
1817
+ end
1818
+
1819
+ # Update properties of this object
1820
+ def update!(**args)
1821
+ @replication_state = args[:replication_state] if args.key?(:replication_state)
1822
+ end
1823
+ end
1824
+
1768
1825
  # A value that combines incremental updates into a summarized value. Data is
1769
1826
  # never directly written or read using type `Aggregate`. Writes provide either
1770
1827
  # the `input_type` or `state_type`, and reads always return the `state_type` .
@@ -1789,8 +1846,8 @@ module Google
1789
1846
  # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
1790
1847
  # sort order is important, for example when encoding keys. - Distinct: In this
1791
1848
  # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
1792
- # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
1793
- # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
1849
+ # However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
1850
+ # '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
1794
1851
  # value. The API clearly documents which mode is used wherever an encoding can
1795
1852
  # be configured. Each encoding also documents which values are supported in
1796
1853
  # which modes. For example, when encoding INT64 as a numeric STRING, negative
@@ -1821,8 +1878,8 @@ module Google
1821
1878
  # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
1822
1879
  # sort order is important, for example when encoding keys. - Distinct: In this
1823
1880
  # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
1824
- # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
1825
- # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
1881
+ # However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
1882
+ # '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
1826
1883
  # value. The API clearly documents which mode is used wherever an encoding can
1827
1884
  # be configured. Each encoding also documents which values are supported in
1828
1885
  # which modes. For example, when encoding INT64 as a numeric STRING, negative
@@ -1926,8 +1983,8 @@ module Google
1926
1983
  # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
1927
1984
  # sort order is important, for example when encoding keys. - Distinct: In this
1928
1985
  # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
1929
- # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
1930
- # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
1986
+ # However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
1987
+ # '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
1931
1988
  # value. The API clearly documents which mode is used wherever an encoding can
1932
1989
  # be configured. Each encoding also documents which values are supported in
1933
1990
  # which modes. For example, when encoding INT64 as a numeric STRING, negative
@@ -2005,7 +2062,7 @@ module Google
2005
2062
  include Google::Apis::Core::Hashable
2006
2063
 
2007
2064
  # 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, has one
2065
+ # empty string, or any value which only contains the null byte `0x00`, has one
2009
2066
  # more null byte appended.
2010
2067
  # Corresponds to the JSON property `escapeNulls`
2011
2068
  # @return [Boolean]
@@ -2191,8 +2248,8 @@ module Google
2191
2248
  # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
2192
2249
  # sort order is important, for example when encoding keys. - Distinct: In this
2193
2250
  # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
2194
- # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
2195
- # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
2251
+ # However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
2252
+ # '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
2196
2253
  # value. The API clearly documents which mode is used wherever an encoding can
2197
2254
  # be configured. Each encoding also documents which values are supported in
2198
2255
  # which modes. For example, when encoding INT64 as a numeric STRING, negative
@@ -2211,8 +2268,8 @@ module Google
2211
2268
  # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
2212
2269
  # sort order is important, for example when encoding keys. - Distinct: In this
2213
2270
  # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
2214
- # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
2215
- # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
2271
+ # However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
2272
+ # '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
2216
2273
  # value. The API clearly documents which mode is used wherever an encoding can
2217
2274
  # be configured. Each encoding also documents which values are supported in
2218
2275
  # which modes. For example, when encoding INT64 as a numeric STRING, negative
@@ -2318,8 +2375,8 @@ module Google
2318
2375
  # NULL values to be encoded as the empty string "". The actual empty string, or
2319
2376
  # any value where every character equals `null_escape_char`, has one more `
2320
2377
  # null_escape_char` appended. If `null_escape_char` is set and does not equal
2321
- # the ASCII null character 0x00, then the encoding will not support sorted mode.
2322
- # .
2378
+ # the ASCII null character `0x00`, then the encoding will not support sorted
2379
+ # mode. .
2323
2380
  # Corresponds to the JSON property `nullEscapeChar`
2324
2381
  # @return [String]
2325
2382
  attr_accessor :null_escape_char
@@ -2383,35 +2440,45 @@ module Google
2383
2440
  # delimiter`. Sorted mode: - Fields are encoded in sorted mode. - Encoded field
2384
2441
  # values must not contain any bytes <= `delimiter[0]` - Element-wise order is
2385
2442
  # preserved: `A < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`, etc.
2386
- # Strict prefixes sort first. Distinct mode: - Fields are encoded in distinct
2387
- # mode. - Encoded field values must not contain `delimiter[0]`.
2443
+ # Strict prefixes sort first. - This encoding does not support `DESC` field
2444
+ # ordering. Distinct mode: - Fields are encoded in distinct mode. - Encoded
2445
+ # field values must not contain `delimiter[0]`.
2388
2446
  # Corresponds to the JSON property `delimitedBytes`
2389
2447
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingDelimitedBytes]
2390
2448
  attr_accessor :delimited_bytes
2391
2449
 
2392
- # Fields are encoded independently and concatenated with the fixed byte pair `
2393
- # 0x00, 0x01` in between. Any null (0x00) byte in an encoded field is replaced
2394
- # by the fixed byte pair `0x00, 0xFF`. Fields that encode to the empty string ""
2395
- # have special handling: - If *every* field encodes to "", or if the STRUCT has
2396
- # no fields defined, then the STRUCT is encoded as the fixed byte pair `0x00,
2397
- # 0x00`. - Otherwise, the STRUCT only encodes until the last non-empty field,
2398
- # omitting any trailing empty fields. Any empty fields that aren't omitted are
2399
- # replaced with the fixed byte pair `0x00, 0x00`. Examples: - STRUCT() -> "\00\
2400
- # 00" - STRUCT("") -> "\00\00" - STRUCT("", "") -> "\00\00" - STRUCT("", "B") ->
2401
- # "\00\00" + "\00\01" + "B" - STRUCT("A", "") -> "A" - STRUCT("", "B", "") -> "\
2402
- # 00\00" + "\00\01" + "B" - STRUCT("A", "", "C") -> "A" + "\00\01" + "\00\00" + "
2403
- # \00\01" + "C" Since null bytes are always escaped, this encoding can cause
2404
- # size blowup for encodings like `Int64.BigEndianBytes` that are likely to
2405
- # produce many such bytes. Sorted mode: - Fields are encoded in sorted mode. -
2406
- # All values supported by the field encodings are allowed - Element-wise order
2407
- # is preserved: `A < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`,
2408
- # etc. Strict prefixes sort first. Distinct mode: - Fields are encoded in
2409
- # distinct mode. - All values supported by the field encodings are allowed.
2450
+ # Fields are encoded independently, then escaped and delimited by appling the
2451
+ # following rules in order: - While the last remaining field is `ASC` or `
2452
+ # UNSPECIFIED`, and encodes to the empty string "", remove it. - In each
2453
+ # remaining field, replace all null bytes `0x00` with the fixed byte pair ``0x00,
2454
+ # 0xFF``. - If any remaining field encodes to the empty string "", replace it
2455
+ # with the fixed byte pair ``0x00, 0x00``. - Append the fixed byte pair ``0x00,
2456
+ # 0x01`` to each remaining field, except for the last remaining field if it is `
2457
+ # ASC`. - Bitwise negate all `DESC` fields. - Concatenate the results, or emit
2458
+ # the fixed byte pair ``0x00, 0x00`` if there are no remaining fields to
2459
+ # concatenate. Examples: ``` - STRUCT() -> "\00\00" - STRUCT("") -> "\00\00" -
2460
+ # STRUCT("", "") -> "\00\00" - STRUCT("", "B") -> "\00\00" + "\00\01" + "B" -
2461
+ # STRUCT("A", "") -> "A" - STRUCT("", "B", "") -> "\00\00" + "\00\01" + "B" -
2462
+ # STRUCT("A", "", "C") -> "A" + "\00\01" + "\00\00" + "\00\01" + "C" ```
2463
+ # Examples for struct with `DESC` fields: ``` - STRUCT("" DESC) -> "\xFF\xFF" + "
2464
+ # \xFF\xFE" - STRUCT("" DESC, "") -> "\xFF\xFF" + "\xFF\xFE" - STRUCT("" DESC, ""
2465
+ # , "") -> "\xFF\xFF" + "\xFF\xFE" - STRUCT("" DESC, "A") -> "\xFF\xFF" + "\xFF\
2466
+ # xFE" + "A" - STRUCT("A", "" DESC, "") -> "A" + "\00\01" + "\xFF\xFF" + "\xFF\
2467
+ # xFE" - STRUCT("", "A" DESC) -> "\x00\x00" + "\x00\x01" + "\xBE" + "\xFF\xFE" ``
2468
+ # ` Since null bytes are always escaped, this encoding can cause size blowup for
2469
+ # encodings like `Int64.BigEndianBytes` that are likely to produce many such
2470
+ # bytes. Sorted mode: - Fields are encoded in sorted mode. - All values
2471
+ # supported by the field encodings are allowed. - Fields with unset or `
2472
+ # UNSPECIFIED` order are treated as `ASC`. - Element-wise order is preserved: `A
2473
+ # < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`, etc. Strict
2474
+ # prefixes sort first. Distinct mode: - Fields are encoded in distinct mode. -
2475
+ # All values supported by the field encodings are allowed.
2410
2476
  # Corresponds to the JSON property `orderedCodeBytes`
2411
2477
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingOrderedCodeBytes]
2412
2478
  attr_accessor :ordered_code_bytes
2413
2479
 
2414
2480
  # Uses the encoding of `fields[0].type` as-is. Only valid if `fields.size == 1`.
2481
+ # This encoding does not support `DESC` field ordering.
2415
2482
  # Corresponds to the JSON property `singleton`
2416
2483
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructEncodingSingleton]
2417
2484
  attr_accessor :singleton
@@ -2433,8 +2500,9 @@ module Google
2433
2500
  # delimiter`. Sorted mode: - Fields are encoded in sorted mode. - Encoded field
2434
2501
  # values must not contain any bytes <= `delimiter[0]` - Element-wise order is
2435
2502
  # preserved: `A < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`, etc.
2436
- # Strict prefixes sort first. Distinct mode: - Fields are encoded in distinct
2437
- # mode. - Encoded field values must not contain `delimiter[0]`.
2503
+ # Strict prefixes sort first. - This encoding does not support `DESC` field
2504
+ # ordering. Distinct mode: - Fields are encoded in distinct mode. - Encoded
2505
+ # field values must not contain `delimiter[0]`.
2438
2506
  class GoogleBigtableAdminV2TypeStructEncodingDelimitedBytes
2439
2507
  include Google::Apis::Core::Hashable
2440
2508
 
@@ -2455,24 +2523,32 @@ module Google
2455
2523
  end
2456
2524
  end
2457
2525
 
2458
- # Fields are encoded independently and concatenated with the fixed byte pair `
2459
- # 0x00, 0x01` in between. Any null (0x00) byte in an encoded field is replaced
2460
- # by the fixed byte pair `0x00, 0xFF`. Fields that encode to the empty string ""
2461
- # have special handling: - If *every* field encodes to "", or if the STRUCT has
2462
- # no fields defined, then the STRUCT is encoded as the fixed byte pair `0x00,
2463
- # 0x00`. - Otherwise, the STRUCT only encodes until the last non-empty field,
2464
- # omitting any trailing empty fields. Any empty fields that aren't omitted are
2465
- # replaced with the fixed byte pair `0x00, 0x00`. Examples: - STRUCT() -> "\00\
2466
- # 00" - STRUCT("") -> "\00\00" - STRUCT("", "") -> "\00\00" - STRUCT("", "B") ->
2467
- # "\00\00" + "\00\01" + "B" - STRUCT("A", "") -> "A" - STRUCT("", "B", "") -> "\
2468
- # 00\00" + "\00\01" + "B" - STRUCT("A", "", "C") -> "A" + "\00\01" + "\00\00" + "
2469
- # \00\01" + "C" Since null bytes are always escaped, this encoding can cause
2470
- # size blowup for encodings like `Int64.BigEndianBytes` that are likely to
2471
- # produce many such bytes. Sorted mode: - Fields are encoded in sorted mode. -
2472
- # All values supported by the field encodings are allowed - Element-wise order
2473
- # is preserved: `A < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`,
2474
- # etc. Strict prefixes sort first. Distinct mode: - Fields are encoded in
2475
- # distinct mode. - All values supported by the field encodings are allowed.
2526
+ # Fields are encoded independently, then escaped and delimited by appling the
2527
+ # following rules in order: - While the last remaining field is `ASC` or `
2528
+ # UNSPECIFIED`, and encodes to the empty string "", remove it. - In each
2529
+ # remaining field, replace all null bytes `0x00` with the fixed byte pair ``0x00,
2530
+ # 0xFF``. - If any remaining field encodes to the empty string "", replace it
2531
+ # with the fixed byte pair ``0x00, 0x00``. - Append the fixed byte pair ``0x00,
2532
+ # 0x01`` to each remaining field, except for the last remaining field if it is `
2533
+ # ASC`. - Bitwise negate all `DESC` fields. - Concatenate the results, or emit
2534
+ # the fixed byte pair ``0x00, 0x00`` if there are no remaining fields to
2535
+ # concatenate. Examples: ``` - STRUCT() -> "\00\00" - STRUCT("") -> "\00\00" -
2536
+ # STRUCT("", "") -> "\00\00" - STRUCT("", "B") -> "\00\00" + "\00\01" + "B" -
2537
+ # STRUCT("A", "") -> "A" - STRUCT("", "B", "") -> "\00\00" + "\00\01" + "B" -
2538
+ # STRUCT("A", "", "C") -> "A" + "\00\01" + "\00\00" + "\00\01" + "C" ```
2539
+ # Examples for struct with `DESC` fields: ``` - STRUCT("" DESC) -> "\xFF\xFF" + "
2540
+ # \xFF\xFE" - STRUCT("" DESC, "") -> "\xFF\xFF" + "\xFF\xFE" - STRUCT("" DESC, ""
2541
+ # , "") -> "\xFF\xFF" + "\xFF\xFE" - STRUCT("" DESC, "A") -> "\xFF\xFF" + "\xFF\
2542
+ # xFE" + "A" - STRUCT("A", "" DESC, "") -> "A" + "\00\01" + "\xFF\xFF" + "\xFF\
2543
+ # xFE" - STRUCT("", "A" DESC) -> "\x00\x00" + "\x00\x01" + "\xBE" + "\xFF\xFE" ``
2544
+ # ` Since null bytes are always escaped, this encoding can cause size blowup for
2545
+ # encodings like `Int64.BigEndianBytes` that are likely to produce many such
2546
+ # bytes. Sorted mode: - Fields are encoded in sorted mode. - All values
2547
+ # supported by the field encodings are allowed. - Fields with unset or `
2548
+ # UNSPECIFIED` order are treated as `ASC`. - Element-wise order is preserved: `A
2549
+ # < B` if `A[0] < B[0]`, or if `A[0] == B[0] && A[1] < B[1]`, etc. Strict
2550
+ # prefixes sort first. Distinct mode: - Fields are encoded in distinct mode. -
2551
+ # All values supported by the field encodings are allowed.
2476
2552
  class GoogleBigtableAdminV2TypeStructEncodingOrderedCodeBytes
2477
2553
  include Google::Apis::Core::Hashable
2478
2554
 
@@ -2486,6 +2562,7 @@ module Google
2486
2562
  end
2487
2563
 
2488
2564
  # Uses the encoding of `fields[0].type` as-is. Only valid if `fields.size == 1`.
2565
+ # This encoding does not support `DESC` field ordering.
2489
2566
  class GoogleBigtableAdminV2TypeStructEncodingSingleton
2490
2567
  include Google::Apis::Core::Hashable
2491
2568
 
@@ -2517,8 +2594,8 @@ module Google
2517
2594
  # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
2518
2595
  # sort order is important, for example when encoding keys. - Distinct: In this
2519
2596
  # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
2520
- # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
2521
- # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
2597
+ # However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
2598
+ # '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
2522
2599
  # value. The API clearly documents which mode is used wherever an encoding can
2523
2600
  # be configured. Each encoding also documents which values are supported in
2524
2601
  # which modes. For example, when encoding INT64 as a numeric STRING, negative
@@ -3022,6 +3099,13 @@ module Google
3022
3099
  # @return [Array<Google::Apis::BigtableadminV2::Operation>]
3023
3100
  attr_accessor :operations
3024
3101
 
3102
+ # Unordered list. Unreachable resources. Populated when the request sets `
3103
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
3104
+ # when attempting to list all resources across all supported locations.
3105
+ # Corresponds to the JSON property `unreachable`
3106
+ # @return [Array<String>]
3107
+ attr_accessor :unreachable
3108
+
3025
3109
  def initialize(**args)
3026
3110
  update!(**args)
3027
3111
  end
@@ -3030,6 +3114,7 @@ module Google
3030
3114
  def update!(**args)
3031
3115
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3032
3116
  @operations = args[:operations] if args.key?(:operations)
3117
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
3033
3118
  end
3034
3119
  end
3035
3120
 
@@ -3177,6 +3262,15 @@ module Google
3177
3262
  class MaterializedView
3178
3263
  include Google::Apis::Core::Hashable
3179
3264
 
3265
+ # Output only. Map from cluster ID to per-cluster materialized view state. If it
3266
+ # could not be determined whether or not the materialized view has data in a
3267
+ # particular cluster (for example, if its zone is unavailable), then there will
3268
+ # be an entry for the cluster with `STATE_NOT_KNOWN` state. Views: `
3269
+ # REPLICATION_VIEW`, `FULL`.
3270
+ # Corresponds to the JSON property `clusterStates`
3271
+ # @return [Hash<String,Google::Apis::BigtableadminV2::GoogleBigtableAdminV2MaterializedViewClusterState>]
3272
+ attr_accessor :cluster_states
3273
+
3180
3274
  # Set to true to make the MaterializedView protected against deletion. Views: `
3181
3275
  # SCHEMA_VIEW`, `REPLICATION_VIEW`, `FULL`.
3182
3276
  # Corresponds to the JSON property `deletionProtection`
@@ -3211,6 +3305,7 @@ module Google
3211
3305
 
3212
3306
  # Update properties of this object
3213
3307
  def update!(**args)
3308
+ @cluster_states = args[:cluster_states] if args.key?(:cluster_states)
3214
3309
  @deletion_protection = args[:deletion_protection] if args.key?(:deletion_protection)
3215
3310
  @etag = args[:etag] if args.key?(:etag)
3216
3311
  @name = args[:name] if args.key?(:name)
@@ -4275,8 +4370,8 @@ module Google
4275
4370
  # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
4276
4371
  # sort order is important, for example when encoding keys. - Distinct: In this
4277
4372
  # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
4278
- # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
4279
- # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
4373
+ # However, the converse is not guaranteed. For example, both ``'foo': '1', 'bar':
4374
+ # '2'`` and ``'bar': '2', 'foo': '1'`` are valid encodings of the same JSON
4280
4375
  # value. The API clearly documents which mode is used wherever an encoding can
4281
4376
  # be configured. Each encoding also documents which values are supported in
4282
4377
  # which modes. For example, when encoding INT64 as a numeric STRING, negative
@@ -4394,17 +4489,28 @@ module Google
4394
4489
  class UndeleteTableMetadata
4395
4490
  include Google::Apis::Core::Hashable
4396
4491
 
4397
- # If set, the time at which this operation finished or was cancelled.
4492
+ # If set, the time at which this operation finished or was cancelled. DEPRECATED:
4493
+ # Use finish_time instead.
4398
4494
  # Corresponds to the JSON property `endTime`
4399
4495
  # @return [String]
4400
4496
  attr_accessor :end_time
4401
4497
 
4498
+ # The time at which the operation failed or was completed successfully.
4499
+ # Corresponds to the JSON property `finishTime`
4500
+ # @return [String]
4501
+ attr_accessor :finish_time
4502
+
4402
4503
  # The name of the table being restored.
4403
4504
  # Corresponds to the JSON property `name`
4404
4505
  # @return [String]
4405
4506
  attr_accessor :name
4406
4507
 
4407
- # The time at which this operation started.
4508
+ # The time at which the original request was received.
4509
+ # Corresponds to the JSON property `requestTime`
4510
+ # @return [String]
4511
+ attr_accessor :request_time
4512
+
4513
+ # The time at which this operation started. DEPRECATED: Use request_time instead.
4408
4514
  # Corresponds to the JSON property `startTime`
4409
4515
  # @return [String]
4410
4516
  attr_accessor :start_time
@@ -4416,7 +4522,9 @@ module Google
4416
4522
  # Update properties of this object
4417
4523
  def update!(**args)
4418
4524
  @end_time = args[:end_time] if args.key?(:end_time)
4525
+ @finish_time = args[:finish_time] if args.key?(:finish_time)
4419
4526
  @name = args[:name] if args.key?(:name)
4527
+ @request_time = args[:request_time] if args.key?(:request_time)
4420
4528
  @start_time = args[:start_time] if args.key?(:start_time)
4421
4529
  end
4422
4530
  end
@@ -4601,17 +4709,27 @@ module Google
4601
4709
  class UpdateLogicalViewMetadata
4602
4710
  include Google::Apis::Core::Hashable
4603
4711
 
4604
- # If set, the time at which this operation finished or was canceled.
4712
+ # DEPRECATED: Use finish_time instead.
4605
4713
  # Corresponds to the JSON property `endTime`
4606
4714
  # @return [String]
4607
4715
  attr_accessor :end_time
4608
4716
 
4717
+ # The time at which the operation failed or was completed successfully.
4718
+ # Corresponds to the JSON property `finishTime`
4719
+ # @return [String]
4720
+ attr_accessor :finish_time
4721
+
4609
4722
  # Request message for BigtableInstanceAdmin.UpdateLogicalView.
4610
4723
  # Corresponds to the JSON property `originalRequest`
4611
4724
  # @return [Google::Apis::BigtableadminV2::UpdateLogicalViewRequest]
4612
4725
  attr_accessor :original_request
4613
4726
 
4614
- # The time at which this operation was started.
4727
+ # The time at which the original request was received.
4728
+ # Corresponds to the JSON property `requestTime`
4729
+ # @return [String]
4730
+ attr_accessor :request_time
4731
+
4732
+ # DEPRECATED: Use request_time instead.
4615
4733
  # Corresponds to the JSON property `startTime`
4616
4734
  # @return [String]
4617
4735
  attr_accessor :start_time
@@ -4623,7 +4741,9 @@ module Google
4623
4741
  # Update properties of this object
4624
4742
  def update!(**args)
4625
4743
  @end_time = args[:end_time] if args.key?(:end_time)
4744
+ @finish_time = args[:finish_time] if args.key?(:finish_time)
4626
4745
  @original_request = args[:original_request] if args.key?(:original_request)
4746
+ @request_time = args[:request_time] if args.key?(:request_time)
4627
4747
  @start_time = args[:start_time] if args.key?(:start_time)
4628
4748
  end
4629
4749
  end
@@ -4657,10 +4777,10 @@ module Google
4657
4777
  class UpdateSchemaBundleMetadata
4658
4778
  include Google::Apis::Core::Hashable
4659
4779
 
4660
- # If set, the time at which this operation finished or was canceled.
4661
- # Corresponds to the JSON property `endTime`
4780
+ # The time at which the operation failed or was completed successfully.
4781
+ # Corresponds to the JSON property `finishTime`
4662
4782
  # @return [String]
4663
- attr_accessor :end_time
4783
+ attr_accessor :finish_time
4664
4784
 
4665
4785
  # The unique name identifying this schema bundle. Values are of the form `
4666
4786
  # projects/`project`/instances/`instance`/tables/`table`/schemaBundles/`
@@ -4669,10 +4789,10 @@ module Google
4669
4789
  # @return [String]
4670
4790
  attr_accessor :name
4671
4791
 
4672
- # The time at which this operation started.
4673
- # Corresponds to the JSON property `startTime`
4792
+ # The time at which the original request was received.
4793
+ # Corresponds to the JSON property `requestTime`
4674
4794
  # @return [String]
4675
- attr_accessor :start_time
4795
+ attr_accessor :request_time
4676
4796
 
4677
4797
  def initialize(**args)
4678
4798
  update!(**args)
@@ -4680,9 +4800,9 @@ module Google
4680
4800
 
4681
4801
  # Update properties of this object
4682
4802
  def update!(**args)
4683
- @end_time = args[:end_time] if args.key?(:end_time)
4803
+ @finish_time = args[:finish_time] if args.key?(:finish_time)
4684
4804
  @name = args[:name] if args.key?(:name)
4685
- @start_time = args[:start_time] if args.key?(:start_time)
4805
+ @request_time = args[:request_time] if args.key?(:request_time)
4686
4806
  end
4687
4807
  end
4688
4808
 
@@ -4690,17 +4810,28 @@ module Google
4690
4810
  class UpdateTableMetadata
4691
4811
  include Google::Apis::Core::Hashable
4692
4812
 
4693
- # If set, the time at which this operation finished or was canceled.
4813
+ # If set, the time at which this operation finished or was canceled. DEPRECATED:
4814
+ # Use finish_time instead.
4694
4815
  # Corresponds to the JSON property `endTime`
4695
4816
  # @return [String]
4696
4817
  attr_accessor :end_time
4697
4818
 
4819
+ # The time at which the operation failed or was completed successfully.
4820
+ # Corresponds to the JSON property `finishTime`
4821
+ # @return [String]
4822
+ attr_accessor :finish_time
4823
+
4698
4824
  # The name of the table being updated.
4699
4825
  # Corresponds to the JSON property `name`
4700
4826
  # @return [String]
4701
4827
  attr_accessor :name
4702
4828
 
4703
- # The time at which this operation started.
4829
+ # The time at which the original request was received.
4830
+ # Corresponds to the JSON property `requestTime`
4831
+ # @return [String]
4832
+ attr_accessor :request_time
4833
+
4834
+ # The time at which this operation started. DEPRECATED: Use request_time instead.
4704
4835
  # Corresponds to the JSON property `startTime`
4705
4836
  # @return [String]
4706
4837
  attr_accessor :start_time
@@ -4712,7 +4843,9 @@ module Google
4712
4843
  # Update properties of this object
4713
4844
  def update!(**args)
4714
4845
  @end_time = args[:end_time] if args.key?(:end_time)
4846
+ @finish_time = args[:finish_time] if args.key?(:finish_time)
4715
4847
  @name = args[:name] if args.key?(:name)
4848
+ @request_time = args[:request_time] if args.key?(:request_time)
4716
4849
  @start_time = args[:start_time] if args.key?(:start_time)
4717
4850
  end
4718
4851
  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.77.0"
19
+ GEM_VERSION = "0.79.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 = "20250828"
25
+ REVISION = "20251012"
26
26
  end
27
27
  end
28
28
  end
@@ -310,6 +310,12 @@ module Google
310
310
  include Google::Apis::Core::JsonObjectSupport
311
311
  end
312
312
 
313
+ class GoogleBigtableAdminV2MaterializedViewClusterState
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
313
319
  class GoogleBigtableAdminV2TypeAggregate
314
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
315
321
 
@@ -1104,7 +1110,9 @@ module Google
1104
1110
  # @private
1105
1111
  class Representation < Google::Apis::Core::JsonRepresentation
1106
1112
  property :end_time, as: 'endTime'
1113
+ property :finish_time, as: 'finishTime'
1107
1114
  property :name, as: 'name'
1115
+ property :request_time, as: 'requestTime'
1108
1116
  property :source_table, as: 'sourceTable'
1109
1117
  property :start_time, as: 'startTime'
1110
1118
  end
@@ -1158,8 +1166,10 @@ module Google
1158
1166
  # @private
1159
1167
  class Representation < Google::Apis::Core::JsonRepresentation
1160
1168
  property :end_time, as: 'endTime'
1169
+ property :finish_time, as: 'finishTime'
1161
1170
  property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV2::CreateLogicalViewRequest, decorator: Google::Apis::BigtableadminV2::CreateLogicalViewRequest::Representation
1162
1171
 
1172
+ property :request_time, as: 'requestTime'
1163
1173
  property :start_time, as: 'startTime'
1164
1174
  end
1165
1175
  end
@@ -1178,8 +1188,10 @@ module Google
1178
1188
  # @private
1179
1189
  class Representation < Google::Apis::Core::JsonRepresentation
1180
1190
  property :end_time, as: 'endTime'
1191
+ property :finish_time, as: 'finishTime'
1181
1192
  property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV2::CreateMaterializedViewRequest, decorator: Google::Apis::BigtableadminV2::CreateMaterializedViewRequest::Representation
1182
1193
 
1194
+ property :request_time, as: 'requestTime'
1183
1195
  property :start_time, as: 'startTime'
1184
1196
  end
1185
1197
  end
@@ -1197,9 +1209,9 @@ module Google
1197
1209
  class CreateSchemaBundleMetadata
1198
1210
  # @private
1199
1211
  class Representation < Google::Apis::Core::JsonRepresentation
1200
- property :end_time, as: 'endTime'
1212
+ property :finish_time, as: 'finishTime'
1201
1213
  property :name, as: 'name'
1202
- property :start_time, as: 'startTime'
1214
+ property :request_time, as: 'requestTime'
1203
1215
  end
1204
1216
  end
1205
1217
 
@@ -1325,6 +1337,13 @@ module Google
1325
1337
  end
1326
1338
  end
1327
1339
 
1340
+ class GoogleBigtableAdminV2MaterializedViewClusterState
1341
+ # @private
1342
+ class Representation < Google::Apis::Core::JsonRepresentation
1343
+ property :replication_state, as: 'replicationState'
1344
+ end
1345
+ end
1346
+
1328
1347
  class GoogleBigtableAdminV2TypeAggregate
1329
1348
  # @private
1330
1349
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1703,6 +1722,7 @@ module Google
1703
1722
  property :next_page_token, as: 'nextPageToken'
1704
1723
  collection :operations, as: 'operations', class: Google::Apis::BigtableadminV2::Operation, decorator: Google::Apis::BigtableadminV2::Operation::Representation
1705
1724
 
1725
+ collection :unreachable, as: 'unreachable'
1706
1726
  end
1707
1727
  end
1708
1728
 
@@ -1748,6 +1768,8 @@ module Google
1748
1768
  class MaterializedView
1749
1769
  # @private
1750
1770
  class Representation < Google::Apis::Core::JsonRepresentation
1771
+ hash :cluster_states, as: 'clusterStates', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2MaterializedViewClusterState, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2MaterializedViewClusterState::Representation
1772
+
1751
1773
  property :deletion_protection, as: 'deletionProtection'
1752
1774
  property :etag, as: 'etag'
1753
1775
  property :name, as: 'name'
@@ -2066,7 +2088,9 @@ module Google
2066
2088
  # @private
2067
2089
  class Representation < Google::Apis::Core::JsonRepresentation
2068
2090
  property :end_time, as: 'endTime'
2091
+ property :finish_time, as: 'finishTime'
2069
2092
  property :name, as: 'name'
2093
+ property :request_time, as: 'requestTime'
2070
2094
  property :start_time, as: 'startTime'
2071
2095
  end
2072
2096
  end
@@ -2135,8 +2159,10 @@ module Google
2135
2159
  # @private
2136
2160
  class Representation < Google::Apis::Core::JsonRepresentation
2137
2161
  property :end_time, as: 'endTime'
2162
+ property :finish_time, as: 'finishTime'
2138
2163
  property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV2::UpdateLogicalViewRequest, decorator: Google::Apis::BigtableadminV2::UpdateLogicalViewRequest::Representation
2139
2164
 
2165
+ property :request_time, as: 'requestTime'
2140
2166
  property :start_time, as: 'startTime'
2141
2167
  end
2142
2168
  end
@@ -2153,9 +2179,9 @@ module Google
2153
2179
  class UpdateSchemaBundleMetadata
2154
2180
  # @private
2155
2181
  class Representation < Google::Apis::Core::JsonRepresentation
2156
- property :end_time, as: 'endTime'
2182
+ property :finish_time, as: 'finishTime'
2157
2183
  property :name, as: 'name'
2158
- property :start_time, as: 'startTime'
2184
+ property :request_time, as: 'requestTime'
2159
2185
  end
2160
2186
  end
2161
2187
 
@@ -2163,7 +2189,9 @@ module Google
2163
2189
  # @private
2164
2190
  class Representation < Google::Apis::Core::JsonRepresentation
2165
2191
  property :end_time, as: 'endTime'
2192
+ property :finish_time, as: 'finishTime'
2166
2193
  property :name, as: 'name'
2194
+ property :request_time, as: 'requestTime'
2167
2195
  property :start_time, as: 'startTime'
2168
2196
  end
2169
2197
  end
@@ -92,6 +92,13 @@ module Google
92
92
  # The standard list page size.
93
93
  # @param [String] page_token
94
94
  # The standard list page token.
95
+ # @param [Boolean] return_partial_success
96
+ # When set to `true`, operations that are reachable are returned as normal, and
97
+ # those that are unreachable are returned in the [ListOperationsResponse.
98
+ # unreachable] field. This can only be `true` when reading across collections e.
99
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
100
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
101
+ # explicitly documented otherwise in service or product specific documentation.
95
102
  # @param [String] fields
96
103
  # Selector specifying which fields to include in a partial response.
97
104
  # @param [String] quota_user
@@ -109,7 +116,7 @@ module Google
109
116
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
110
117
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
111
118
  # @raise [Google::Apis::AuthorizationError] Authorization is required
112
- def list_operation_project_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
119
+ def list_operation_project_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
113
120
  command = make_simple_command(:get, 'v2/{+name}/operations', options)
114
121
  command.response_representation = Google::Apis::BigtableadminV2::ListOperationsResponse::Representation
115
122
  command.response_class = Google::Apis::BigtableadminV2::ListOperationsResponse
@@ -117,6 +124,7 @@ module Google
117
124
  command.query['filter'] = filter unless filter.nil?
118
125
  command.query['pageSize'] = page_size unless page_size.nil?
119
126
  command.query['pageToken'] = page_token unless page_token.nil?
127
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
120
128
  command.query['fields'] = fields unless fields.nil?
121
129
  command.query['quotaUser'] = quota_user unless quota_user.nil?
122
130
  execute_or_queue_command(command, &block)
@@ -1644,6 +1652,9 @@ module Google
1644
1652
  # Required. The unique name of the requested materialized view. Values are of
1645
1653
  # the form `projects/`project`/instances/`instance`/materializedViews/`
1646
1654
  # materialized_view``.
1655
+ # @param [String] view
1656
+ # Optional. Describes which of the materialized view's fields should be
1657
+ # populated in the response. Defaults to SCHEMA_VIEW.
1647
1658
  # @param [String] fields
1648
1659
  # Selector specifying which fields to include in a partial response.
1649
1660
  # @param [String] quota_user
@@ -1661,11 +1672,12 @@ module Google
1661
1672
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1662
1673
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1663
1674
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1664
- def get_project_instance_materialized_view(name, fields: nil, quota_user: nil, options: nil, &block)
1675
+ def get_project_instance_materialized_view(name, view: nil, fields: nil, quota_user: nil, options: nil, &block)
1665
1676
  command = make_simple_command(:get, 'v2/{+name}', options)
1666
1677
  command.response_representation = Google::Apis::BigtableadminV2::MaterializedView::Representation
1667
1678
  command.response_class = Google::Apis::BigtableadminV2::MaterializedView
1668
1679
  command.params['name'] = name unless name.nil?
1680
+ command.query['view'] = view unless view.nil?
1669
1681
  command.query['fields'] = fields unless fields.nil?
1670
1682
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1671
1683
  execute_or_queue_command(command, &block)
@@ -1720,6 +1732,10 @@ module Google
1720
1732
  # Provide this to retrieve the subsequent page. When paginating, all other
1721
1733
  # parameters provided to `ListMaterializedViews` must match the call that
1722
1734
  # provided the page token.
1735
+ # @param [String] view
1736
+ # Optional. Describes which of the materialized view's fields should be
1737
+ # populated in the response. For now, only the default value SCHEMA_VIEW is
1738
+ # supported.
1723
1739
  # @param [String] fields
1724
1740
  # Selector specifying which fields to include in a partial response.
1725
1741
  # @param [String] quota_user
@@ -1737,13 +1753,14 @@ module Google
1737
1753
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1738
1754
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1739
1755
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1740
- def list_project_instance_materialized_views(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1756
+ def list_project_instance_materialized_views(parent, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
1741
1757
  command = make_simple_command(:get, 'v2/{+parent}/materializedViews', options)
1742
1758
  command.response_representation = Google::Apis::BigtableadminV2::ListMaterializedViewsResponse::Representation
1743
1759
  command.response_class = Google::Apis::BigtableadminV2::ListMaterializedViewsResponse
1744
1760
  command.params['parent'] = parent unless parent.nil?
1745
1761
  command.query['pageSize'] = page_size unless page_size.nil?
1746
1762
  command.query['pageToken'] = page_token unless page_token.nil?
1763
+ command.query['view'] = view unless view.nil?
1747
1764
  command.query['fields'] = fields unless fields.nil?
1748
1765
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1749
1766
  execute_or_queue_command(command, &block)
@@ -3002,8 +3019,8 @@ module Google
3002
3019
  # @param [String] name
3003
3020
  # The resource that owns the locations collection, if applicable.
3004
3021
  # @param [Array<String>, String] extra_location_types
3005
- # Optional. Do not use this field. It is unsupported and is ignored unless
3006
- # explicitly documented otherwise. This is primarily for internal usage.
3022
+ # Optional. Unless explicitly documented otherwise, don't use this unsupported
3023
+ # field which is primarily intended for internal usage.
3007
3024
  # @param [String] filter
3008
3025
  # A filter to narrow down results to a preferred subset. The filtering language
3009
3026
  # 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.77.0
4
+ version: 0.79.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.77.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.79.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: