bigtable_table_admin.proto 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.bigtable.admin.v2;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/resource.proto";
  20. import "google/bigtable/admin/v2/common.proto";
  21. import "google/bigtable/admin/v2/table.proto";
  22. import "google/iam/v1/iam_policy.proto";
  23. import "google/iam/v1/policy.proto";
  24. import "google/longrunning/operations.proto";
  25. import "google/protobuf/duration.proto";
  26. import "google/protobuf/empty.proto";
  27. import "google/protobuf/field_mask.proto";
  28. import "google/protobuf/timestamp.proto";
  29. option csharp_namespace = "Google.Cloud.Bigtable.Admin.V2";
  30. option go_package = "google.golang.org/genproto/googleapis/bigtable/admin/v2;admin";
  31. option java_multiple_files = true;
  32. option java_outer_classname = "BigtableTableAdminProto";
  33. option java_package = "com.google.bigtable.admin.v2";
  34. option php_namespace = "Google\\Cloud\\Bigtable\\Admin\\V2";
  35. option ruby_package = "Google::Cloud::Bigtable::Admin::V2";
  36. // Service for creating, configuring, and deleting Cloud Bigtable tables.
  37. //
  38. //
  39. // Provides access to the table schemas only, not the data stored within
  40. // the tables.
  41. service BigtableTableAdmin {
  42. option (google.api.default_host) = "bigtableadmin.googleapis.com";
  43. option (google.api.oauth_scopes) =
  44. "https://www.googleapis.com/auth/bigtable.admin,"
  45. "https://www.googleapis.com/auth/bigtable.admin.table,"
  46. "https://www.googleapis.com/auth/cloud-bigtable.admin,"
  47. "https://www.googleapis.com/auth/cloud-bigtable.admin.table,"
  48. "https://www.googleapis.com/auth/cloud-platform,"
  49. "https://www.googleapis.com/auth/cloud-platform.read-only";
  50. // Creates a new table in the specified instance.
  51. // The table can be created with a full set of initial column families,
  52. // specified in the request.
  53. rpc CreateTable(CreateTableRequest) returns (Table) {
  54. option (google.api.http) = {
  55. post: "/v2/{parent=projects/*/instances/*}/tables"
  56. body: "*"
  57. };
  58. option (google.api.method_signature) = "parent,table_id,table";
  59. }
  60. // Creates a new table from the specified snapshot. The target table must
  61. // not exist. The snapshot and the table must be in the same instance.
  62. //
  63. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  64. // feature is not currently available to most Cloud Bigtable customers. This
  65. // feature might be changed in backward-incompatible ways and is not
  66. // recommended for production use. It is not subject to any SLA or deprecation
  67. // policy.
  68. rpc CreateTableFromSnapshot(CreateTableFromSnapshotRequest) returns (google.longrunning.Operation) {
  69. option (google.api.http) = {
  70. post: "/v2/{parent=projects/*/instances/*}/tables:createFromSnapshot"
  71. body: "*"
  72. };
  73. option (google.api.method_signature) = "parent,table_id,source_snapshot";
  74. option (google.longrunning.operation_info) = {
  75. response_type: "Table"
  76. metadata_type: "CreateTableFromSnapshotMetadata"
  77. };
  78. }
  79. // Lists all tables served from a specified instance.
  80. rpc ListTables(ListTablesRequest) returns (ListTablesResponse) {
  81. option (google.api.http) = {
  82. get: "/v2/{parent=projects/*/instances/*}/tables"
  83. };
  84. option (google.api.method_signature) = "parent";
  85. }
  86. // Gets metadata information about the specified table.
  87. rpc GetTable(GetTableRequest) returns (Table) {
  88. option (google.api.http) = {
  89. get: "/v2/{name=projects/*/instances/*/tables/*}"
  90. };
  91. option (google.api.method_signature) = "name";
  92. }
  93. // Updates a specified table.
  94. rpc UpdateTable(UpdateTableRequest) returns (google.longrunning.Operation) {
  95. option (google.api.http) = {
  96. patch: "/v2/{table.name=projects/*/instances/*/tables/*}"
  97. body: "table"
  98. };
  99. option (google.api.method_signature) = "table,update_mask";
  100. option (google.longrunning.operation_info) = {
  101. response_type: "Table"
  102. metadata_type: "UpdateTableMetadata"
  103. };
  104. }
  105. // Permanently deletes a specified table and all of its data.
  106. rpc DeleteTable(DeleteTableRequest) returns (google.protobuf.Empty) {
  107. option (google.api.http) = {
  108. delete: "/v2/{name=projects/*/instances/*/tables/*}"
  109. };
  110. option (google.api.method_signature) = "name";
  111. }
  112. // Restores a specified table which was accidentally deleted.
  113. rpc UndeleteTable(UndeleteTableRequest) returns (google.longrunning.Operation) {
  114. option (google.api.http) = {
  115. post: "/v2/{name=projects/*/instances/*/tables/*}:undelete"
  116. body: "*"
  117. };
  118. option (google.api.method_signature) = "name";
  119. option (google.longrunning.operation_info) = {
  120. response_type: "Table"
  121. metadata_type: "UndeleteTableMetadata"
  122. };
  123. }
  124. // Performs a series of column family modifications on the specified table.
  125. // Either all or none of the modifications will occur before this method
  126. // returns, but data requests received prior to that point may see a table
  127. // where only some modifications have taken effect.
  128. rpc ModifyColumnFamilies(ModifyColumnFamiliesRequest) returns (Table) {
  129. option (google.api.http) = {
  130. post: "/v2/{name=projects/*/instances/*/tables/*}:modifyColumnFamilies"
  131. body: "*"
  132. };
  133. option (google.api.method_signature) = "name,modifications";
  134. }
  135. // Permanently drop/delete a row range from a specified table. The request can
  136. // specify whether to delete all rows in a table, or only those that match a
  137. // particular prefix.
  138. rpc DropRowRange(DropRowRangeRequest) returns (google.protobuf.Empty) {
  139. option (google.api.http) = {
  140. post: "/v2/{name=projects/*/instances/*/tables/*}:dropRowRange"
  141. body: "*"
  142. };
  143. }
  144. // Generates a consistency token for a Table, which can be used in
  145. // CheckConsistency to check whether mutations to the table that finished
  146. // before this call started have been replicated. The tokens will be available
  147. // for 90 days.
  148. rpc GenerateConsistencyToken(GenerateConsistencyTokenRequest) returns (GenerateConsistencyTokenResponse) {
  149. option (google.api.http) = {
  150. post: "/v2/{name=projects/*/instances/*/tables/*}:generateConsistencyToken"
  151. body: "*"
  152. };
  153. option (google.api.method_signature) = "name";
  154. }
  155. // Checks replication consistency based on a consistency token, that is, if
  156. // replication has caught up based on the conditions specified in the token
  157. // and the check request.
  158. rpc CheckConsistency(CheckConsistencyRequest) returns (CheckConsistencyResponse) {
  159. option (google.api.http) = {
  160. post: "/v2/{name=projects/*/instances/*/tables/*}:checkConsistency"
  161. body: "*"
  162. };
  163. option (google.api.method_signature) = "name,consistency_token";
  164. }
  165. // Creates a new snapshot in the specified cluster from the specified
  166. // source table. The cluster and the table must be in the same instance.
  167. //
  168. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  169. // feature is not currently available to most Cloud Bigtable customers. This
  170. // feature might be changed in backward-incompatible ways and is not
  171. // recommended for production use. It is not subject to any SLA or deprecation
  172. // policy.
  173. rpc SnapshotTable(SnapshotTableRequest) returns (google.longrunning.Operation) {
  174. option (google.api.http) = {
  175. post: "/v2/{name=projects/*/instances/*/tables/*}:snapshot"
  176. body: "*"
  177. };
  178. option (google.api.method_signature) = "name,cluster,snapshot_id,description";
  179. option (google.longrunning.operation_info) = {
  180. response_type: "Snapshot"
  181. metadata_type: "SnapshotTableMetadata"
  182. };
  183. }
  184. // Gets metadata information about the specified snapshot.
  185. //
  186. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  187. // feature is not currently available to most Cloud Bigtable customers. This
  188. // feature might be changed in backward-incompatible ways and is not
  189. // recommended for production use. It is not subject to any SLA or deprecation
  190. // policy.
  191. rpc GetSnapshot(GetSnapshotRequest) returns (Snapshot) {
  192. option (google.api.http) = {
  193. get: "/v2/{name=projects/*/instances/*/clusters/*/snapshots/*}"
  194. };
  195. option (google.api.method_signature) = "name";
  196. }
  197. // Lists all snapshots associated with the specified cluster.
  198. //
  199. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  200. // feature is not currently available to most Cloud Bigtable customers. This
  201. // feature might be changed in backward-incompatible ways and is not
  202. // recommended for production use. It is not subject to any SLA or deprecation
  203. // policy.
  204. rpc ListSnapshots(ListSnapshotsRequest) returns (ListSnapshotsResponse) {
  205. option (google.api.http) = {
  206. get: "/v2/{parent=projects/*/instances/*/clusters/*}/snapshots"
  207. };
  208. option (google.api.method_signature) = "parent";
  209. }
  210. // Permanently deletes the specified snapshot.
  211. //
  212. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  213. // feature is not currently available to most Cloud Bigtable customers. This
  214. // feature might be changed in backward-incompatible ways and is not
  215. // recommended for production use. It is not subject to any SLA or deprecation
  216. // policy.
  217. rpc DeleteSnapshot(DeleteSnapshotRequest) returns (google.protobuf.Empty) {
  218. option (google.api.http) = {
  219. delete: "/v2/{name=projects/*/instances/*/clusters/*/snapshots/*}"
  220. };
  221. option (google.api.method_signature) = "name";
  222. }
  223. // Starts creating a new Cloud Bigtable Backup. The returned backup
  224. // [long-running operation][google.longrunning.Operation] can be used to
  225. // track creation of the backup. The
  226. // [metadata][google.longrunning.Operation.metadata] field type is
  227. // [CreateBackupMetadata][google.bigtable.admin.v2.CreateBackupMetadata]. The
  228. // [response][google.longrunning.Operation.response] field type is
  229. // [Backup][google.bigtable.admin.v2.Backup], if successful. Cancelling the returned operation will stop the
  230. // creation and delete the backup.
  231. rpc CreateBackup(CreateBackupRequest) returns (google.longrunning.Operation) {
  232. option (google.api.http) = {
  233. post: "/v2/{parent=projects/*/instances/*/clusters/*}/backups"
  234. body: "backup"
  235. };
  236. option (google.api.method_signature) = "parent,backup_id,backup";
  237. option (google.longrunning.operation_info) = {
  238. response_type: "Backup"
  239. metadata_type: "CreateBackupMetadata"
  240. };
  241. }
  242. // Gets metadata on a pending or completed Cloud Bigtable Backup.
  243. rpc GetBackup(GetBackupRequest) returns (Backup) {
  244. option (google.api.http) = {
  245. get: "/v2/{name=projects/*/instances/*/clusters/*/backups/*}"
  246. };
  247. option (google.api.method_signature) = "name";
  248. }
  249. // Updates a pending or completed Cloud Bigtable Backup.
  250. rpc UpdateBackup(UpdateBackupRequest) returns (Backup) {
  251. option (google.api.http) = {
  252. patch: "/v2/{backup.name=projects/*/instances/*/clusters/*/backups/*}"
  253. body: "backup"
  254. };
  255. option (google.api.method_signature) = "backup,update_mask";
  256. }
  257. // Deletes a pending or completed Cloud Bigtable backup.
  258. rpc DeleteBackup(DeleteBackupRequest) returns (google.protobuf.Empty) {
  259. option (google.api.http) = {
  260. delete: "/v2/{name=projects/*/instances/*/clusters/*/backups/*}"
  261. };
  262. option (google.api.method_signature) = "name";
  263. }
  264. // Lists Cloud Bigtable backups. Returns both completed and pending
  265. // backups.
  266. rpc ListBackups(ListBackupsRequest) returns (ListBackupsResponse) {
  267. option (google.api.http) = {
  268. get: "/v2/{parent=projects/*/instances/*/clusters/*}/backups"
  269. };
  270. option (google.api.method_signature) = "parent";
  271. }
  272. // Create a new table by restoring from a completed backup. The new table
  273. // must be in the same project as the instance containing the backup. The
  274. // returned table [long-running operation][google.longrunning.Operation] can
  275. // be used to track the progress of the operation, and to cancel it. The
  276. // [metadata][google.longrunning.Operation.metadata] field type is
  277. // [RestoreTableMetadata][google.bigtable.admin.RestoreTableMetadata]. The
  278. // [response][google.longrunning.Operation.response] type is
  279. // [Table][google.bigtable.admin.v2.Table], if successful.
  280. rpc RestoreTable(RestoreTableRequest) returns (google.longrunning.Operation) {
  281. option (google.api.http) = {
  282. post: "/v2/{parent=projects/*/instances/*}/tables:restore"
  283. body: "*"
  284. };
  285. option (google.longrunning.operation_info) = {
  286. response_type: "Table"
  287. metadata_type: "RestoreTableMetadata"
  288. };
  289. }
  290. // Gets the access control policy for a Table or Backup resource.
  291. // Returns an empty policy if the resource exists but does not have a policy
  292. // set.
  293. rpc GetIamPolicy(google.iam.v1.GetIamPolicyRequest) returns (google.iam.v1.Policy) {
  294. option (google.api.http) = {
  295. post: "/v2/{resource=projects/*/instances/*/tables/*}:getIamPolicy"
  296. body: "*"
  297. additional_bindings {
  298. post: "/v2/{resource=projects/*/instances/*/clusters/*/backups/*}:getIamPolicy"
  299. body: "*"
  300. }
  301. };
  302. option (google.api.method_signature) = "resource";
  303. }
  304. // Sets the access control policy on a Table or Backup resource.
  305. // Replaces any existing policy.
  306. rpc SetIamPolicy(google.iam.v1.SetIamPolicyRequest) returns (google.iam.v1.Policy) {
  307. option (google.api.http) = {
  308. post: "/v2/{resource=projects/*/instances/*/tables/*}:setIamPolicy"
  309. body: "*"
  310. additional_bindings {
  311. post: "/v2/{resource=projects/*/instances/*/clusters/*/backups/*}:setIamPolicy"
  312. body: "*"
  313. }
  314. };
  315. option (google.api.method_signature) = "resource,policy";
  316. }
  317. // Returns permissions that the caller has on the specified Table or Backup resource.
  318. rpc TestIamPermissions(google.iam.v1.TestIamPermissionsRequest) returns (google.iam.v1.TestIamPermissionsResponse) {
  319. option (google.api.http) = {
  320. post: "/v2/{resource=projects/*/instances/*/tables/*}:testIamPermissions"
  321. body: "*"
  322. additional_bindings {
  323. post: "/v2/{resource=projects/*/instances/*/clusters/*/backups/*}:testIamPermissions"
  324. body: "*"
  325. }
  326. };
  327. option (google.api.method_signature) = "resource,permissions";
  328. }
  329. }
  330. // The request for
  331. // [RestoreTable][google.bigtable.admin.v2.BigtableTableAdmin.RestoreTable].
  332. message RestoreTableRequest {
  333. // Required. The name of the instance in which to create the restored
  334. // table. This instance must be in the same project as the source backup.
  335. // Values are of the form `projects/<project>/instances/<instance>`.
  336. string parent = 1 [
  337. (google.api.field_behavior) = REQUIRED,
  338. (google.api.resource_reference) = {
  339. type: "bigtableadmin.googleapis.com/Instance"
  340. }
  341. ];
  342. // Required. The id of the table to create and restore to. This
  343. // table must not already exist. The `table_id` appended to
  344. // `parent` forms the full table name of the form
  345. // `projects/<project>/instances/<instance>/tables/<table_id>`.
  346. string table_id = 2 [(google.api.field_behavior) = REQUIRED];
  347. // Required. The source from which to restore.
  348. oneof source {
  349. // Name of the backup from which to restore. Values are of the form
  350. // `projects/<project>/instances/<instance>/clusters/<cluster>/backups/<backup>`.
  351. string backup = 3 [(google.api.resource_reference) = {
  352. type: "bigtableadmin.googleapis.com/Backup"
  353. }];
  354. }
  355. }
  356. // Metadata type for the long-running operation returned by
  357. // [RestoreTable][google.bigtable.admin.v2.BigtableTableAdmin.RestoreTable].
  358. message RestoreTableMetadata {
  359. // Name of the table being created and restored to.
  360. string name = 1;
  361. // The type of the restore source.
  362. RestoreSourceType source_type = 2;
  363. // Information about the source used to restore the table, as specified by
  364. // `source` in [RestoreTableRequest][google.bigtable.admin.v2.RestoreTableRequest].
  365. oneof source_info {
  366. BackupInfo backup_info = 3;
  367. }
  368. // If exists, the name of the long-running operation that will be used to
  369. // track the post-restore optimization process to optimize the performance of
  370. // the restored table. The metadata type of the long-running operation is
  371. // [OptimizeRestoreTableMetadata][]. The response type is
  372. // [Empty][google.protobuf.Empty]. This long-running operation may be
  373. // automatically created by the system if applicable after the
  374. // RestoreTable long-running operation completes successfully. This operation
  375. // may not be created if the table is already optimized or the restore was
  376. // not successful.
  377. string optimize_table_operation_name = 4;
  378. // The progress of the [RestoreTable][google.bigtable.admin.v2.BigtableTableAdmin.RestoreTable]
  379. // operation.
  380. OperationProgress progress = 5;
  381. }
  382. // Metadata type for the long-running operation used to track the progress
  383. // of optimizations performed on a newly restored table. This long-running
  384. // operation is automatically created by the system after the successful
  385. // completion of a table restore, and cannot be cancelled.
  386. message OptimizeRestoredTableMetadata {
  387. // Name of the restored table being optimized.
  388. string name = 1;
  389. // The progress of the post-restore optimizations.
  390. OperationProgress progress = 2;
  391. }
  392. // Request message for
  393. // [google.bigtable.admin.v2.BigtableTableAdmin.CreateTable][google.bigtable.admin.v2.BigtableTableAdmin.CreateTable]
  394. message CreateTableRequest {
  395. // An initial split point for a newly created table.
  396. message Split {
  397. // Row key to use as an initial tablet boundary.
  398. bytes key = 1;
  399. }
  400. // Required. The unique name of the instance in which to create the table.
  401. // Values are of the form `projects/{project}/instances/{instance}`.
  402. string parent = 1 [
  403. (google.api.field_behavior) = REQUIRED,
  404. (google.api.resource_reference) = {
  405. type: "bigtableadmin.googleapis.com/Instance"
  406. }
  407. ];
  408. // Required. The name by which the new table should be referred to within the parent
  409. // instance, e.g., `foobar` rather than `{parent}/tables/foobar`.
  410. // Maximum 50 characters.
  411. string table_id = 2 [(google.api.field_behavior) = REQUIRED];
  412. // Required. The Table to create.
  413. Table table = 3 [(google.api.field_behavior) = REQUIRED];
  414. // The optional list of row keys that will be used to initially split the
  415. // table into several tablets (tablets are similar to HBase regions).
  416. // Given two split keys, `s1` and `s2`, three tablets will be created,
  417. // spanning the key ranges: `[, s1), [s1, s2), [s2, )`.
  418. //
  419. // Example:
  420. //
  421. // * Row keys := `["a", "apple", "custom", "customer_1", "customer_2",`
  422. // `"other", "zz"]`
  423. // * initial_split_keys := `["apple", "customer_1", "customer_2", "other"]`
  424. // * Key assignment:
  425. // - Tablet 1 `[, apple) => {"a"}.`
  426. // - Tablet 2 `[apple, customer_1) => {"apple", "custom"}.`
  427. // - Tablet 3 `[customer_1, customer_2) => {"customer_1"}.`
  428. // - Tablet 4 `[customer_2, other) => {"customer_2"}.`
  429. // - Tablet 5 `[other, ) => {"other", "zz"}.`
  430. repeated Split initial_splits = 4;
  431. }
  432. // Request message for
  433. // [google.bigtable.admin.v2.BigtableTableAdmin.CreateTableFromSnapshot][google.bigtable.admin.v2.BigtableTableAdmin.CreateTableFromSnapshot]
  434. //
  435. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  436. // feature is not currently available to most Cloud Bigtable customers. This
  437. // feature might be changed in backward-incompatible ways and is not recommended
  438. // for production use. It is not subject to any SLA or deprecation policy.
  439. message CreateTableFromSnapshotRequest {
  440. // Required. The unique name of the instance in which to create the table.
  441. // Values are of the form `projects/{project}/instances/{instance}`.
  442. string parent = 1 [
  443. (google.api.field_behavior) = REQUIRED,
  444. (google.api.resource_reference) = {
  445. type: "bigtableadmin.googleapis.com/Instance"
  446. }
  447. ];
  448. // Required. The name by which the new table should be referred to within the parent
  449. // instance, e.g., `foobar` rather than `{parent}/tables/foobar`.
  450. string table_id = 2 [(google.api.field_behavior) = REQUIRED];
  451. // Required. The unique name of the snapshot from which to restore the table. The
  452. // snapshot and the table must be in the same instance.
  453. // Values are of the form
  454. // `projects/{project}/instances/{instance}/clusters/{cluster}/snapshots/{snapshot}`.
  455. string source_snapshot = 3 [
  456. (google.api.field_behavior) = REQUIRED,
  457. (google.api.resource_reference) = {
  458. type: "bigtableadmin.googleapis.com/Snapshot"
  459. }
  460. ];
  461. }
  462. // Request message for
  463. // [google.bigtable.admin.v2.BigtableTableAdmin.DropRowRange][google.bigtable.admin.v2.BigtableTableAdmin.DropRowRange]
  464. message DropRowRangeRequest {
  465. // Required. The unique name of the table on which to drop a range of rows.
  466. // Values are of the form
  467. // `projects/{project}/instances/{instance}/tables/{table}`.
  468. string name = 1 [
  469. (google.api.field_behavior) = REQUIRED,
  470. (google.api.resource_reference) = {
  471. type: "bigtableadmin.googleapis.com/Table"
  472. }
  473. ];
  474. // Delete all rows or by prefix.
  475. oneof target {
  476. // Delete all rows that start with this row key prefix. Prefix cannot be
  477. // zero length.
  478. bytes row_key_prefix = 2;
  479. // Delete all rows in the table. Setting this to false is a no-op.
  480. bool delete_all_data_from_table = 3;
  481. }
  482. }
  483. // Request message for
  484. // [google.bigtable.admin.v2.BigtableTableAdmin.ListTables][google.bigtable.admin.v2.BigtableTableAdmin.ListTables]
  485. message ListTablesRequest {
  486. // Required. The unique name of the instance for which tables should be listed.
  487. // Values are of the form `projects/{project}/instances/{instance}`.
  488. string parent = 1 [
  489. (google.api.field_behavior) = REQUIRED,
  490. (google.api.resource_reference) = {
  491. type: "bigtableadmin.googleapis.com/Instance"
  492. }
  493. ];
  494. // The view to be applied to the returned tables' fields.
  495. // Only NAME_ONLY view (default) and REPLICATION_VIEW are supported.
  496. Table.View view = 2;
  497. // Maximum number of results per page.
  498. //
  499. // A page_size of zero lets the server choose the number of items to return.
  500. // A page_size which is strictly positive will return at most that many items.
  501. // A negative page_size will cause an error.
  502. //
  503. // Following the first request, subsequent paginated calls are not required
  504. // to pass a page_size. If a page_size is set in subsequent calls, it must
  505. // match the page_size given in the first request.
  506. int32 page_size = 4;
  507. // The value of `next_page_token` returned by a previous call.
  508. string page_token = 3;
  509. }
  510. // Response message for
  511. // [google.bigtable.admin.v2.BigtableTableAdmin.ListTables][google.bigtable.admin.v2.BigtableTableAdmin.ListTables]
  512. message ListTablesResponse {
  513. // The tables present in the requested instance.
  514. repeated Table tables = 1;
  515. // Set if not all tables could be returned in a single response.
  516. // Pass this value to `page_token` in another request to get the next
  517. // page of results.
  518. string next_page_token = 2;
  519. }
  520. // Request message for
  521. // [google.bigtable.admin.v2.BigtableTableAdmin.GetTable][google.bigtable.admin.v2.BigtableTableAdmin.GetTable]
  522. message GetTableRequest {
  523. // Required. The unique name of the requested table.
  524. // Values are of the form
  525. // `projects/{project}/instances/{instance}/tables/{table}`.
  526. string name = 1 [
  527. (google.api.field_behavior) = REQUIRED,
  528. (google.api.resource_reference) = {
  529. type: "bigtableadmin.googleapis.com/Table"
  530. }
  531. ];
  532. // The view to be applied to the returned table's fields.
  533. // Defaults to `SCHEMA_VIEW` if unspecified.
  534. Table.View view = 2;
  535. }
  536. // The request for
  537. // [UpdateTable][google.bigtable.admin.v2.BigtableTableAdmin.UpdateTable].
  538. message UpdateTableRequest {
  539. // Required. The table to update.
  540. // The table's `name` field is used to identify the table to update.
  541. Table table = 1 [(google.api.field_behavior) = REQUIRED];
  542. // Required. The list of fields to update.
  543. // A mask specifying which fields (e.g. `deletion_protection`) in the `table`
  544. // field should be updated. This mask is relative to the `table` field, not to
  545. // the request message. The wildcard (*) path is currently not supported.
  546. // Currently UpdateTable is only supported for the following field:
  547. // * `deletion_protection`
  548. // If `column_families` is set in `update_mask`, it will return an
  549. // UNIMPLEMENTED error.
  550. google.protobuf.FieldMask update_mask = 2
  551. [(google.api.field_behavior) = REQUIRED];
  552. }
  553. // Metadata type for the operation returned by
  554. // [UpdateTable][google.bigtable.admin.v2.BigtableTableAdmin.UpdateTable].
  555. message UpdateTableMetadata {
  556. // The name of the table being updated.
  557. string name = 1;
  558. // The time at which this operation started.
  559. google.protobuf.Timestamp start_time = 2;
  560. // If set, the time at which this operation finished or was canceled.
  561. google.protobuf.Timestamp end_time = 3;
  562. }
  563. // Request message for
  564. // [google.bigtable.admin.v2.BigtableTableAdmin.DeleteTable][google.bigtable.admin.v2.BigtableTableAdmin.DeleteTable]
  565. message DeleteTableRequest {
  566. // Required. The unique name of the table to be deleted.
  567. // Values are of the form
  568. // `projects/{project}/instances/{instance}/tables/{table}`.
  569. string name = 1 [
  570. (google.api.field_behavior) = REQUIRED,
  571. (google.api.resource_reference) = {
  572. type: "bigtableadmin.googleapis.com/Table"
  573. }
  574. ];
  575. }
  576. // Request message for
  577. // [google.bigtable.admin.v2.BigtableTableAdmin.UndeleteTable][google.bigtable.admin.v2.BigtableTableAdmin.UndeleteTable]
  578. message UndeleteTableRequest {
  579. // Required. The unique name of the table to be restored.
  580. // Values are of the form
  581. // `projects/{project}/instances/{instance}/tables/{table}`.
  582. string name = 1 [
  583. (google.api.field_behavior) = REQUIRED,
  584. (google.api.resource_reference) = {
  585. type: "bigtableadmin.googleapis.com/Table"
  586. }
  587. ];
  588. }
  589. // Metadata type for the operation returned by
  590. // [google.bigtable.admin.v2.BigtableTableAdmin.UndeleteTable][google.bigtable.admin.v2.BigtableTableAdmin.UndeleteTable].
  591. message UndeleteTableMetadata {
  592. // The name of the table being restored.
  593. string name = 1;
  594. // The time at which this operation started.
  595. google.protobuf.Timestamp start_time = 2;
  596. // If set, the time at which this operation finished or was cancelled.
  597. google.protobuf.Timestamp end_time = 3;
  598. }
  599. // Request message for
  600. // [google.bigtable.admin.v2.BigtableTableAdmin.ModifyColumnFamilies][google.bigtable.admin.v2.BigtableTableAdmin.ModifyColumnFamilies]
  601. message ModifyColumnFamiliesRequest {
  602. // A create, update, or delete of a particular column family.
  603. message Modification {
  604. // The ID of the column family to be modified.
  605. string id = 1;
  606. // Column family modifications.
  607. oneof mod {
  608. // Create a new column family with the specified schema, or fail if
  609. // one already exists with the given ID.
  610. ColumnFamily create = 2;
  611. // Update an existing column family to the specified schema, or fail
  612. // if no column family exists with the given ID.
  613. ColumnFamily update = 3;
  614. // Drop (delete) the column family with the given ID, or fail if no such
  615. // family exists.
  616. bool drop = 4;
  617. }
  618. }
  619. // Required. The unique name of the table whose families should be modified.
  620. // Values are of the form
  621. // `projects/{project}/instances/{instance}/tables/{table}`.
  622. string name = 1 [
  623. (google.api.field_behavior) = REQUIRED,
  624. (google.api.resource_reference) = {
  625. type: "bigtableadmin.googleapis.com/Table"
  626. }
  627. ];
  628. // Required. Modifications to be atomically applied to the specified table's families.
  629. // Entries are applied in order, meaning that earlier modifications can be
  630. // masked by later ones (in the case of repeated updates to the same family,
  631. // for example).
  632. repeated Modification modifications = 2 [(google.api.field_behavior) = REQUIRED];
  633. }
  634. // Request message for
  635. // [google.bigtable.admin.v2.BigtableTableAdmin.GenerateConsistencyToken][google.bigtable.admin.v2.BigtableTableAdmin.GenerateConsistencyToken]
  636. message GenerateConsistencyTokenRequest {
  637. // Required. The unique name of the Table for which to create a consistency token.
  638. // Values are of the form
  639. // `projects/{project}/instances/{instance}/tables/{table}`.
  640. string name = 1 [
  641. (google.api.field_behavior) = REQUIRED,
  642. (google.api.resource_reference) = {
  643. type: "bigtableadmin.googleapis.com/Table"
  644. }
  645. ];
  646. }
  647. // Response message for
  648. // [google.bigtable.admin.v2.BigtableTableAdmin.GenerateConsistencyToken][google.bigtable.admin.v2.BigtableTableAdmin.GenerateConsistencyToken]
  649. message GenerateConsistencyTokenResponse {
  650. // The generated consistency token.
  651. string consistency_token = 1;
  652. }
  653. // Request message for
  654. // [google.bigtable.admin.v2.BigtableTableAdmin.CheckConsistency][google.bigtable.admin.v2.BigtableTableAdmin.CheckConsistency]
  655. message CheckConsistencyRequest {
  656. // Required. The unique name of the Table for which to check replication consistency.
  657. // Values are of the form
  658. // `projects/{project}/instances/{instance}/tables/{table}`.
  659. string name = 1 [
  660. (google.api.field_behavior) = REQUIRED,
  661. (google.api.resource_reference) = {
  662. type: "bigtableadmin.googleapis.com/Table"
  663. }
  664. ];
  665. // Required. The token created using GenerateConsistencyToken for the Table.
  666. string consistency_token = 2 [(google.api.field_behavior) = REQUIRED];
  667. }
  668. // Response message for
  669. // [google.bigtable.admin.v2.BigtableTableAdmin.CheckConsistency][google.bigtable.admin.v2.BigtableTableAdmin.CheckConsistency]
  670. message CheckConsistencyResponse {
  671. // True only if the token is consistent. A token is consistent if replication
  672. // has caught up with the restrictions specified in the request.
  673. bool consistent = 1;
  674. }
  675. // Request message for
  676. // [google.bigtable.admin.v2.BigtableTableAdmin.SnapshotTable][google.bigtable.admin.v2.BigtableTableAdmin.SnapshotTable]
  677. //
  678. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  679. // feature is not currently available to most Cloud Bigtable customers. This
  680. // feature might be changed in backward-incompatible ways and is not recommended
  681. // for production use. It is not subject to any SLA or deprecation policy.
  682. message SnapshotTableRequest {
  683. // Required. The unique name of the table to have the snapshot taken.
  684. // Values are of the form
  685. // `projects/{project}/instances/{instance}/tables/{table}`.
  686. string name = 1 [
  687. (google.api.field_behavior) = REQUIRED,
  688. (google.api.resource_reference) = {
  689. type: "bigtableadmin.googleapis.com/Table"
  690. }
  691. ];
  692. // Required. The name of the cluster where the snapshot will be created in.
  693. // Values are of the form
  694. // `projects/{project}/instances/{instance}/clusters/{cluster}`.
  695. string cluster = 2 [
  696. (google.api.field_behavior) = REQUIRED,
  697. (google.api.resource_reference) = {
  698. type: "bigtableadmin.googleapis.com/Cluster"
  699. }
  700. ];
  701. // Required. The ID by which the new snapshot should be referred to within the parent
  702. // cluster, e.g., `mysnapshot` of the form: `[_a-zA-Z0-9][-_.a-zA-Z0-9]*`
  703. // rather than
  704. // `projects/{project}/instances/{instance}/clusters/{cluster}/snapshots/mysnapshot`.
  705. string snapshot_id = 3 [(google.api.field_behavior) = REQUIRED];
  706. // The amount of time that the new snapshot can stay active after it is
  707. // created. Once 'ttl' expires, the snapshot will get deleted. The maximum
  708. // amount of time a snapshot can stay active is 7 days. If 'ttl' is not
  709. // specified, the default value of 24 hours will be used.
  710. google.protobuf.Duration ttl = 4;
  711. // Description of the snapshot.
  712. string description = 5;
  713. }
  714. // Request message for
  715. // [google.bigtable.admin.v2.BigtableTableAdmin.GetSnapshot][google.bigtable.admin.v2.BigtableTableAdmin.GetSnapshot]
  716. //
  717. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  718. // feature is not currently available to most Cloud Bigtable customers. This
  719. // feature might be changed in backward-incompatible ways and is not recommended
  720. // for production use. It is not subject to any SLA or deprecation policy.
  721. message GetSnapshotRequest {
  722. // Required. The unique name of the requested snapshot.
  723. // Values are of the form
  724. // `projects/{project}/instances/{instance}/clusters/{cluster}/snapshots/{snapshot}`.
  725. string name = 1 [
  726. (google.api.field_behavior) = REQUIRED,
  727. (google.api.resource_reference) = {
  728. type: "bigtableadmin.googleapis.com/Snapshot"
  729. }
  730. ];
  731. }
  732. // Request message for
  733. // [google.bigtable.admin.v2.BigtableTableAdmin.ListSnapshots][google.bigtable.admin.v2.BigtableTableAdmin.ListSnapshots]
  734. //
  735. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  736. // feature is not currently available to most Cloud Bigtable customers. This
  737. // feature might be changed in backward-incompatible ways and is not recommended
  738. // for production use. It is not subject to any SLA or deprecation policy.
  739. message ListSnapshotsRequest {
  740. // Required. The unique name of the cluster for which snapshots should be listed.
  741. // Values are of the form
  742. // `projects/{project}/instances/{instance}/clusters/{cluster}`.
  743. // Use `{cluster} = '-'` to list snapshots for all clusters in an instance,
  744. // e.g., `projects/{project}/instances/{instance}/clusters/-`.
  745. string parent = 1 [
  746. (google.api.field_behavior) = REQUIRED,
  747. (google.api.resource_reference) = {
  748. type: "bigtableadmin.googleapis.com/Cluster"
  749. }
  750. ];
  751. // The maximum number of snapshots to return per page.
  752. // CURRENTLY UNIMPLEMENTED AND IGNORED.
  753. int32 page_size = 2;
  754. // The value of `next_page_token` returned by a previous call.
  755. string page_token = 3;
  756. }
  757. // Response message for
  758. // [google.bigtable.admin.v2.BigtableTableAdmin.ListSnapshots][google.bigtable.admin.v2.BigtableTableAdmin.ListSnapshots]
  759. //
  760. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  761. // feature is not currently available to most Cloud Bigtable customers. This
  762. // feature might be changed in backward-incompatible ways and is not recommended
  763. // for production use. It is not subject to any SLA or deprecation policy.
  764. message ListSnapshotsResponse {
  765. // The snapshots present in the requested cluster.
  766. repeated Snapshot snapshots = 1;
  767. // Set if not all snapshots could be returned in a single response.
  768. // Pass this value to `page_token` in another request to get the next
  769. // page of results.
  770. string next_page_token = 2;
  771. }
  772. // Request message for
  773. // [google.bigtable.admin.v2.BigtableTableAdmin.DeleteSnapshot][google.bigtable.admin.v2.BigtableTableAdmin.DeleteSnapshot]
  774. //
  775. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  776. // feature is not currently available to most Cloud Bigtable customers. This
  777. // feature might be changed in backward-incompatible ways and is not recommended
  778. // for production use. It is not subject to any SLA or deprecation policy.
  779. message DeleteSnapshotRequest {
  780. // Required. The unique name of the snapshot to be deleted.
  781. // Values are of the form
  782. // `projects/{project}/instances/{instance}/clusters/{cluster}/snapshots/{snapshot}`.
  783. string name = 1 [
  784. (google.api.field_behavior) = REQUIRED,
  785. (google.api.resource_reference) = {
  786. type: "bigtableadmin.googleapis.com/Snapshot"
  787. }
  788. ];
  789. }
  790. // The metadata for the Operation returned by SnapshotTable.
  791. //
  792. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  793. // feature is not currently available to most Cloud Bigtable customers. This
  794. // feature might be changed in backward-incompatible ways and is not recommended
  795. // for production use. It is not subject to any SLA or deprecation policy.
  796. message SnapshotTableMetadata {
  797. // The request that prompted the initiation of this SnapshotTable operation.
  798. SnapshotTableRequest original_request = 1;
  799. // The time at which the original request was received.
  800. google.protobuf.Timestamp request_time = 2;
  801. // The time at which the operation failed or was completed successfully.
  802. google.protobuf.Timestamp finish_time = 3;
  803. }
  804. // The metadata for the Operation returned by CreateTableFromSnapshot.
  805. //
  806. // Note: This is a private alpha release of Cloud Bigtable snapshots. This
  807. // feature is not currently available to most Cloud Bigtable customers. This
  808. // feature might be changed in backward-incompatible ways and is not recommended
  809. // for production use. It is not subject to any SLA or deprecation policy.
  810. message CreateTableFromSnapshotMetadata {
  811. // The request that prompted the initiation of this CreateTableFromSnapshot
  812. // operation.
  813. CreateTableFromSnapshotRequest original_request = 1;
  814. // The time at which the original request was received.
  815. google.protobuf.Timestamp request_time = 2;
  816. // The time at which the operation failed or was completed successfully.
  817. google.protobuf.Timestamp finish_time = 3;
  818. }
  819. // The request for [CreateBackup][google.bigtable.admin.v2.BigtableTableAdmin.CreateBackup].
  820. message CreateBackupRequest {
  821. // Required. This must be one of the clusters in the instance in which this
  822. // table is located. The backup will be stored in this cluster. Values are
  823. // of the form `projects/{project}/instances/{instance}/clusters/{cluster}`.
  824. string parent = 1 [
  825. (google.api.field_behavior) = REQUIRED,
  826. (google.api.resource_reference) = {
  827. type: "bigtableadmin.googleapis.com/Cluster"
  828. }
  829. ];
  830. // Required. The id of the backup to be created. The `backup_id` along with
  831. // the parent `parent` are combined as {parent}/backups/{backup_id} to create
  832. // the full backup name, of the form:
  833. // `projects/{project}/instances/{instance}/clusters/{cluster}/backups/{backup_id}`.
  834. // This string must be between 1 and 50 characters in length and match the
  835. // regex [_a-zA-Z0-9][-_.a-zA-Z0-9]*.
  836. string backup_id = 2 [(google.api.field_behavior) = REQUIRED];
  837. // Required. The backup to create.
  838. Backup backup = 3 [(google.api.field_behavior) = REQUIRED];
  839. }
  840. // Metadata type for the operation returned by
  841. // [CreateBackup][google.bigtable.admin.v2.BigtableTableAdmin.CreateBackup].
  842. message CreateBackupMetadata {
  843. // The name of the backup being created.
  844. string name = 1;
  845. // The name of the table the backup is created from.
  846. string source_table = 2;
  847. // The time at which this operation started.
  848. google.protobuf.Timestamp start_time = 3;
  849. // If set, the time at which this operation finished or was cancelled.
  850. google.protobuf.Timestamp end_time = 4;
  851. }
  852. // The request for [UpdateBackup][google.bigtable.admin.v2.BigtableTableAdmin.UpdateBackup].
  853. message UpdateBackupRequest {
  854. // Required. The backup to update. `backup.name`, and the fields to be updated
  855. // as specified by `update_mask` are required. Other fields are ignored.
  856. // Update is only supported for the following fields:
  857. // * `backup.expire_time`.
  858. Backup backup = 1 [(google.api.field_behavior) = REQUIRED];
  859. // Required. A mask specifying which fields (e.g. `expire_time`) in the
  860. // Backup resource should be updated. This mask is relative to the Backup
  861. // resource, not to the request message. The field mask must always be
  862. // specified; this prevents any future fields from being erased accidentally
  863. // by clients that do not know about them.
  864. google.protobuf.FieldMask update_mask = 2 [(google.api.field_behavior) = REQUIRED];
  865. }
  866. // The request for [GetBackup][google.bigtable.admin.v2.BigtableTableAdmin.GetBackup].
  867. message GetBackupRequest {
  868. // Required. Name of the backup.
  869. // Values are of the form
  870. // `projects/{project}/instances/{instance}/clusters/{cluster}/backups/{backup}`.
  871. string name = 1 [
  872. (google.api.field_behavior) = REQUIRED,
  873. (google.api.resource_reference) = {
  874. type: "bigtableadmin.googleapis.com/Backup"
  875. }
  876. ];
  877. }
  878. // The request for [DeleteBackup][google.bigtable.admin.v2.BigtableTableAdmin.DeleteBackup].
  879. message DeleteBackupRequest {
  880. // Required. Name of the backup to delete.
  881. // Values are of the form
  882. // `projects/{project}/instances/{instance}/clusters/{cluster}/backups/{backup}`.
  883. string name = 1 [
  884. (google.api.field_behavior) = REQUIRED,
  885. (google.api.resource_reference) = {
  886. type: "bigtableadmin.googleapis.com/Backup"
  887. }
  888. ];
  889. }
  890. // The request for [ListBackups][google.bigtable.admin.v2.BigtableTableAdmin.ListBackups].
  891. message ListBackupsRequest {
  892. // Required. The cluster to list backups from. Values are of the
  893. // form `projects/{project}/instances/{instance}/clusters/{cluster}`.
  894. // Use `{cluster} = '-'` to list backups for all clusters in an instance,
  895. // e.g., `projects/{project}/instances/{instance}/clusters/-`.
  896. string parent = 1 [
  897. (google.api.field_behavior) = REQUIRED,
  898. (google.api.resource_reference) = {
  899. type: "bigtableadmin.googleapis.com/Cluster"
  900. }
  901. ];
  902. // A filter expression that filters backups listed in the response.
  903. // The expression must specify the field name, a comparison operator,
  904. // and the value that you want to use for filtering. The value must be a
  905. // string, a number, or a boolean. The comparison operator must be
  906. // <, >, <=, >=, !=, =, or :. Colon ':' represents a HAS operator which is
  907. // roughly synonymous with equality. Filter rules are case insensitive.
  908. //
  909. // The fields eligible for filtering are:
  910. // * `name`
  911. // * `source_table`
  912. // * `state`
  913. // * `start_time` (and values are of the format YYYY-MM-DDTHH:MM:SSZ)
  914. // * `end_time` (and values are of the format YYYY-MM-DDTHH:MM:SSZ)
  915. // * `expire_time` (and values are of the format YYYY-MM-DDTHH:MM:SSZ)
  916. // * `size_bytes`
  917. //
  918. // To filter on multiple expressions, provide each separate expression within
  919. // parentheses. By default, each expression is an AND expression. However,
  920. // you can include AND, OR, and NOT expressions explicitly.
  921. //
  922. // Some examples of using filters are:
  923. //
  924. // * `name:"exact"` --> The backup's name is the string "exact".
  925. // * `name:howl` --> The backup's name contains the string "howl".
  926. // * `source_table:prod`
  927. // --> The source_table's name contains the string "prod".
  928. // * `state:CREATING` --> The backup is pending creation.
  929. // * `state:READY` --> The backup is fully created and ready for use.
  930. // * `(name:howl) AND (start_time < \"2018-03-28T14:50:00Z\")`
  931. // --> The backup name contains the string "howl" and start_time
  932. // of the backup is before 2018-03-28T14:50:00Z.
  933. // * `size_bytes > 10000000000` --> The backup's size is greater than 10GB
  934. string filter = 2;
  935. // An expression for specifying the sort order of the results of the request.
  936. // The string value should specify one or more fields in [Backup][google.bigtable.admin.v2.Backup]. The full
  937. // syntax is described at https://aip.dev/132#ordering.
  938. //
  939. // Fields supported are:
  940. // * name
  941. // * source_table
  942. // * expire_time
  943. // * start_time
  944. // * end_time
  945. // * size_bytes
  946. // * state
  947. //
  948. // For example, "start_time". The default sorting order is ascending.
  949. // To specify descending order for the field, a suffix " desc" should
  950. // be appended to the field name. For example, "start_time desc".
  951. // Redundant space characters in the syntax are insigificant.
  952. //
  953. // If order_by is empty, results will be sorted by `start_time` in descending
  954. // order starting from the most recently created backup.
  955. string order_by = 3;
  956. // Number of backups to be returned in the response. If 0 or
  957. // less, defaults to the server's maximum allowed page size.
  958. int32 page_size = 4;
  959. // If non-empty, `page_token` should contain a
  960. // [next_page_token][google.bigtable.admin.v2.ListBackupsResponse.next_page_token] from a
  961. // previous [ListBackupsResponse][google.bigtable.admin.v2.ListBackupsResponse] to the same `parent` and with the same
  962. // `filter`.
  963. string page_token = 5;
  964. }
  965. // The response for [ListBackups][google.bigtable.admin.v2.BigtableTableAdmin.ListBackups].
  966. message ListBackupsResponse {
  967. // The list of matching backups.
  968. repeated Backup backups = 1;
  969. // `next_page_token` can be sent in a subsequent
  970. // [ListBackups][google.bigtable.admin.v2.BigtableTableAdmin.ListBackups] call to fetch more
  971. // of the matching backups.
  972. string next_page_token = 2;
  973. }