reservation.proto 41 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055
  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.cloud.bigquery.reservation.v1;
  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/protobuf/empty.proto";
  21. import "google/protobuf/field_mask.proto";
  22. import "google/protobuf/timestamp.proto";
  23. import "google/rpc/status.proto";
  24. option csharp_namespace = "Google.Cloud.BigQuery.Reservation.V1";
  25. option go_package = "google.golang.org/genproto/googleapis/cloud/bigquery/reservation/v1;reservation";
  26. option java_multiple_files = true;
  27. option java_outer_classname = "ReservationProto";
  28. option java_package = "com.google.cloud.bigquery.reservation.v1";
  29. option php_namespace = "Google\\Cloud\\BigQuery\\Reservation\\V1";
  30. // This API allows users to manage their flat-rate BigQuery reservations.
  31. //
  32. // A reservation provides computational resource guarantees, in the form of
  33. // [slots](https://cloud.google.com/bigquery/docs/slots), to users. A slot is a
  34. // unit of computational power in BigQuery, and serves as the basic unit of
  35. // parallelism. In a scan of a multi-partitioned table, a single slot operates
  36. // on a single partition of the table. A reservation resource exists as a child
  37. // resource of the admin project and location, e.g.:
  38. // `projects/myproject/locations/US/reservations/reservationName`.
  39. //
  40. // A capacity commitment is a way to purchase compute capacity for BigQuery jobs
  41. // (in the form of slots) with some committed period of usage. A capacity
  42. // commitment resource exists as a child resource of the admin project and
  43. // location, e.g.:
  44. // `projects/myproject/locations/US/capacityCommitments/id`.
  45. service ReservationService {
  46. option (google.api.default_host) = "bigqueryreservation.googleapis.com";
  47. option (google.api.oauth_scopes) =
  48. "https://www.googleapis.com/auth/bigquery,"
  49. "https://www.googleapis.com/auth/cloud-platform";
  50. // Creates a new reservation resource.
  51. rpc CreateReservation(CreateReservationRequest) returns (Reservation) {
  52. option (google.api.http) = {
  53. post: "/v1/{parent=projects/*/locations/*}/reservations"
  54. body: "reservation"
  55. };
  56. option (google.api.method_signature) = "parent,reservation,reservation_id";
  57. }
  58. // Lists all the reservations for the project in the specified location.
  59. rpc ListReservations(ListReservationsRequest) returns (ListReservationsResponse) {
  60. option (google.api.http) = {
  61. get: "/v1/{parent=projects/*/locations/*}/reservations"
  62. };
  63. option (google.api.method_signature) = "parent";
  64. }
  65. // Returns information about the reservation.
  66. rpc GetReservation(GetReservationRequest) returns (Reservation) {
  67. option (google.api.http) = {
  68. get: "/v1/{name=projects/*/locations/*/reservations/*}"
  69. };
  70. option (google.api.method_signature) = "name";
  71. }
  72. // Deletes a reservation.
  73. // Returns `google.rpc.Code.FAILED_PRECONDITION` when reservation has
  74. // assignments.
  75. rpc DeleteReservation(DeleteReservationRequest) returns (google.protobuf.Empty) {
  76. option (google.api.http) = {
  77. delete: "/v1/{name=projects/*/locations/*/reservations/*}"
  78. };
  79. option (google.api.method_signature) = "name";
  80. }
  81. // Updates an existing reservation resource.
  82. rpc UpdateReservation(UpdateReservationRequest) returns (Reservation) {
  83. option (google.api.http) = {
  84. patch: "/v1/{reservation.name=projects/*/locations/*/reservations/*}"
  85. body: "reservation"
  86. };
  87. option (google.api.method_signature) = "reservation,update_mask";
  88. }
  89. // Creates a new capacity commitment resource.
  90. rpc CreateCapacityCommitment(CreateCapacityCommitmentRequest) returns (CapacityCommitment) {
  91. option (google.api.http) = {
  92. post: "/v1/{parent=projects/*/locations/*}/capacityCommitments"
  93. body: "capacity_commitment"
  94. };
  95. option (google.api.method_signature) = "parent,capacity_commitment";
  96. }
  97. // Lists all the capacity commitments for the admin project.
  98. rpc ListCapacityCommitments(ListCapacityCommitmentsRequest) returns (ListCapacityCommitmentsResponse) {
  99. option (google.api.http) = {
  100. get: "/v1/{parent=projects/*/locations/*}/capacityCommitments"
  101. };
  102. option (google.api.method_signature) = "parent";
  103. }
  104. // Returns information about the capacity commitment.
  105. rpc GetCapacityCommitment(GetCapacityCommitmentRequest) returns (CapacityCommitment) {
  106. option (google.api.http) = {
  107. get: "/v1/{name=projects/*/locations/*/capacityCommitments/*}"
  108. };
  109. option (google.api.method_signature) = "name";
  110. }
  111. // Deletes a capacity commitment. Attempting to delete capacity commitment
  112. // before its commitment_end_time will fail with the error code
  113. // `google.rpc.Code.FAILED_PRECONDITION`.
  114. rpc DeleteCapacityCommitment(DeleteCapacityCommitmentRequest) returns (google.protobuf.Empty) {
  115. option (google.api.http) = {
  116. delete: "/v1/{name=projects/*/locations/*/capacityCommitments/*}"
  117. };
  118. option (google.api.method_signature) = "name";
  119. }
  120. // Updates an existing capacity commitment.
  121. //
  122. // Only `plan` and `renewal_plan` fields can be updated.
  123. //
  124. // Plan can only be changed to a plan of a longer commitment period.
  125. // Attempting to change to a plan with shorter commitment period will fail
  126. // with the error code `google.rpc.Code.FAILED_PRECONDITION`.
  127. rpc UpdateCapacityCommitment(UpdateCapacityCommitmentRequest) returns (CapacityCommitment) {
  128. option (google.api.http) = {
  129. patch: "/v1/{capacity_commitment.name=projects/*/locations/*/capacityCommitments/*}"
  130. body: "capacity_commitment"
  131. };
  132. option (google.api.method_signature) = "capacity_commitment,update_mask";
  133. }
  134. // Splits capacity commitment to two commitments of the same plan and
  135. // `commitment_end_time`.
  136. //
  137. // A common use case is to enable downgrading commitments.
  138. //
  139. // For example, in order to downgrade from 10000 slots to 8000, you might
  140. // split a 10000 capacity commitment into commitments of 2000 and 8000. Then,
  141. // you delete the first one after the commitment end time passes.
  142. rpc SplitCapacityCommitment(SplitCapacityCommitmentRequest) returns (SplitCapacityCommitmentResponse) {
  143. option (google.api.http) = {
  144. post: "/v1/{name=projects/*/locations/*/capacityCommitments/*}:split"
  145. body: "*"
  146. };
  147. option (google.api.method_signature) = "name,slot_count";
  148. }
  149. // Merges capacity commitments of the same plan into a single commitment.
  150. //
  151. // The resulting capacity commitment has the greater commitment_end_time
  152. // out of the to-be-merged capacity commitments.
  153. //
  154. // Attempting to merge capacity commitments of different plan will fail
  155. // with the error code `google.rpc.Code.FAILED_PRECONDITION`.
  156. rpc MergeCapacityCommitments(MergeCapacityCommitmentsRequest) returns (CapacityCommitment) {
  157. option (google.api.http) = {
  158. post: "/v1/{parent=projects/*/locations/*}/capacityCommitments:merge"
  159. body: "*"
  160. };
  161. option (google.api.method_signature) = "parent,capacity_commitment_ids";
  162. }
  163. // Creates an assignment object which allows the given project to submit jobs
  164. // of a certain type using slots from the specified reservation.
  165. //
  166. // Currently a
  167. // resource (project, folder, organization) can only have one assignment per
  168. // each (job_type, location) combination, and that reservation will be used
  169. // for all jobs of the matching type.
  170. //
  171. // Different assignments can be created on different levels of the
  172. // projects, folders or organization hierarchy. During query execution,
  173. // the assignment is looked up at the project, folder and organization levels
  174. // in that order. The first assignment found is applied to the query.
  175. //
  176. // When creating assignments, it does not matter if other assignments exist at
  177. // higher levels.
  178. //
  179. // Example:
  180. //
  181. // * The organization `organizationA` contains two projects, `project1`
  182. // and `project2`.
  183. // * Assignments for all three entities (`organizationA`, `project1`, and
  184. // `project2`) could all be created and mapped to the same or different
  185. // reservations.
  186. //
  187. // "None" assignments represent an absence of the assignment. Projects
  188. // assigned to None use on-demand pricing. To create a "None" assignment, use
  189. // "none" as a reservation_id in the parent. Example parent:
  190. // `projects/myproject/locations/US/reservations/none`.
  191. //
  192. // Returns `google.rpc.Code.PERMISSION_DENIED` if user does not have
  193. // 'bigquery.admin' permissions on the project using the reservation
  194. // and the project that owns this reservation.
  195. //
  196. // Returns `google.rpc.Code.INVALID_ARGUMENT` when location of the assignment
  197. // does not match location of the reservation.
  198. rpc CreateAssignment(CreateAssignmentRequest) returns (Assignment) {
  199. option (google.api.http) = {
  200. post: "/v1/{parent=projects/*/locations/*/reservations/*}/assignments"
  201. body: "assignment"
  202. };
  203. option (google.api.method_signature) = "parent,assignment";
  204. }
  205. // Lists assignments.
  206. //
  207. // Only explicitly created assignments will be returned.
  208. //
  209. // Example:
  210. //
  211. // * Organization `organizationA` contains two projects, `project1` and
  212. // `project2`.
  213. // * Reservation `res1` exists and was created previously.
  214. // * CreateAssignment was used previously to define the following
  215. // associations between entities and reservations: `<organizationA, res1>`
  216. // and `<project1, res1>`
  217. //
  218. // In this example, ListAssignments will just return the above two assignments
  219. // for reservation `res1`, and no expansion/merge will happen.
  220. //
  221. // The wildcard "-" can be used for
  222. // reservations in the request. In that case all assignments belongs to the
  223. // specified project and location will be listed.
  224. //
  225. // **Note** "-" cannot be used for projects nor locations.
  226. rpc ListAssignments(ListAssignmentsRequest) returns (ListAssignmentsResponse) {
  227. option (google.api.http) = {
  228. get: "/v1/{parent=projects/*/locations/*/reservations/*}/assignments"
  229. };
  230. option (google.api.method_signature) = "parent";
  231. }
  232. // Deletes a assignment. No expansion will happen.
  233. //
  234. // Example:
  235. //
  236. // * Organization `organizationA` contains two projects, `project1` and
  237. // `project2`.
  238. // * Reservation `res1` exists and was created previously.
  239. // * CreateAssignment was used previously to define the following
  240. // associations between entities and reservations: `<organizationA, res1>`
  241. // and `<project1, res1>`
  242. //
  243. // In this example, deletion of the `<organizationA, res1>` assignment won't
  244. // affect the other assignment `<project1, res1>`. After said deletion,
  245. // queries from `project1` will still use `res1` while queries from
  246. // `project2` will switch to use on-demand mode.
  247. rpc DeleteAssignment(DeleteAssignmentRequest) returns (google.protobuf.Empty) {
  248. option (google.api.http) = {
  249. delete: "/v1/{name=projects/*/locations/*/reservations/*/assignments/*}"
  250. };
  251. option (google.api.method_signature) = "name";
  252. }
  253. // Deprecated: Looks up assignments for a specified resource for a particular
  254. // region. If the request is about a project:
  255. //
  256. // 1. Assignments created on the project will be returned if they exist.
  257. // 2. Otherwise assignments created on the closest ancestor will be
  258. // returned.
  259. // 3. Assignments for different JobTypes will all be returned.
  260. //
  261. // The same logic applies if the request is about a folder.
  262. //
  263. // If the request is about an organization, then assignments created on the
  264. // organization will be returned (organization doesn't have ancestors).
  265. //
  266. // Comparing to ListAssignments, there are some behavior
  267. // differences:
  268. //
  269. // 1. permission on the assignee will be verified in this API.
  270. // 2. Hierarchy lookup (project->folder->organization) happens in this API.
  271. // 3. Parent here is `projects/*/locations/*`, instead of
  272. // `projects/*/locations/*reservations/*`.
  273. //
  274. // **Note** "-" cannot be used for projects
  275. // nor locations.
  276. rpc SearchAssignments(SearchAssignmentsRequest) returns (SearchAssignmentsResponse) {
  277. option deprecated = true;
  278. option (google.api.http) = {
  279. get: "/v1/{parent=projects/*/locations/*}:searchAssignments"
  280. };
  281. option (google.api.method_signature) = "parent,query";
  282. }
  283. // Looks up assignments for a specified resource for a particular region.
  284. // If the request is about a project:
  285. //
  286. // 1. Assignments created on the project will be returned if they exist.
  287. // 2. Otherwise assignments created on the closest ancestor will be
  288. // returned.
  289. // 3. Assignments for different JobTypes will all be returned.
  290. //
  291. // The same logic applies if the request is about a folder.
  292. //
  293. // If the request is about an organization, then assignments created on the
  294. // organization will be returned (organization doesn't have ancestors).
  295. //
  296. // Comparing to ListAssignments, there are some behavior
  297. // differences:
  298. //
  299. // 1. permission on the assignee will be verified in this API.
  300. // 2. Hierarchy lookup (project->folder->organization) happens in this API.
  301. // 3. Parent here is `projects/*/locations/*`, instead of
  302. // `projects/*/locations/*reservations/*`.
  303. rpc SearchAllAssignments(SearchAllAssignmentsRequest) returns (SearchAllAssignmentsResponse) {
  304. option (google.api.http) = {
  305. get: "/v1/{parent=projects/*/locations/*}:searchAllAssignments"
  306. };
  307. option (google.api.method_signature) = "parent,query";
  308. }
  309. // Moves an assignment under a new reservation.
  310. //
  311. // This differs from removing an existing assignment and recreating a new one
  312. // by providing a transactional change that ensures an assignee always has an
  313. // associated reservation.
  314. rpc MoveAssignment(MoveAssignmentRequest) returns (Assignment) {
  315. option (google.api.http) = {
  316. post: "/v1/{name=projects/*/locations/*/reservations/*/assignments/*}:move"
  317. body: "*"
  318. };
  319. option (google.api.method_signature) = "name,destination_id";
  320. }
  321. // Updates an existing assignment.
  322. //
  323. // Only the `priority` field can be updated.
  324. rpc UpdateAssignment(UpdateAssignmentRequest) returns (Assignment) {
  325. option (google.api.http) = {
  326. patch: "/v1/{assignment.name=projects/*/locations/*/reservations/*/assignments/*}"
  327. body: "assignment"
  328. };
  329. option (google.api.method_signature) = "assignment,update_mask";
  330. }
  331. // Retrieves a BI reservation.
  332. rpc GetBiReservation(GetBiReservationRequest) returns (BiReservation) {
  333. option (google.api.http) = {
  334. get: "/v1/{name=projects/*/locations/*/biReservation}"
  335. };
  336. option (google.api.method_signature) = "name";
  337. }
  338. // Updates a BI reservation.
  339. //
  340. // Only fields specified in the `field_mask` are updated.
  341. //
  342. // A singleton BI reservation always exists with default size 0.
  343. // In order to reserve BI capacity it needs to be updated to an amount
  344. // greater than 0. In order to release BI capacity reservation size
  345. // must be set to 0.
  346. rpc UpdateBiReservation(UpdateBiReservationRequest) returns (BiReservation) {
  347. option (google.api.http) = {
  348. patch: "/v1/{bi_reservation.name=projects/*/locations/*/biReservation}"
  349. body: "bi_reservation"
  350. };
  351. option (google.api.method_signature) = "bi_reservation,update_mask";
  352. }
  353. }
  354. // A reservation is a mechanism used to guarantee slots to users.
  355. message Reservation {
  356. option (google.api.resource) = {
  357. type: "bigqueryreservation.googleapis.com/Reservation"
  358. pattern: "projects/{project}/locations/{location}/reservations/{reservation}"
  359. };
  360. // The resource name of the reservation, e.g.,
  361. // `projects/*/locations/*/reservations/team1-prod`.
  362. // The reservation_id must only contain lower case alphanumeric characters or
  363. // dashes. It must start with a letter and must not end with a dash. Its
  364. // maximum length is 64 characters.
  365. string name = 1;
  366. // Minimum slots available to this reservation. A slot is a unit of
  367. // computational power in BigQuery, and serves as the unit of parallelism.
  368. //
  369. // Queries using this reservation might use more slots during runtime if
  370. // ignore_idle_slots is set to false.
  371. //
  372. // If the new reservation's slot capacity exceeds the project's slot capacity
  373. // or if total slot capacity of the new reservation and its siblings exceeds
  374. // the project's slot capacity, the request will fail with
  375. // `google.rpc.Code.RESOURCE_EXHAUSTED`.
  376. //
  377. // NOTE: for reservations in US or EU multi-regions, slot capacity constraints
  378. // are checked separately for default and auxiliary regions. See
  379. // multi_region_auxiliary flag for more details.
  380. int64 slot_capacity = 2;
  381. // If false, any query or pipeline job using this reservation will use idle
  382. // slots from other reservations within the same admin project. If true, a
  383. // query or pipeline job using this reservation will execute with the slot
  384. // capacity specified in the slot_capacity field at most.
  385. bool ignore_idle_slots = 4;
  386. // Maximum number of queries that are allowed to run concurrently in this
  387. // reservation. This is a soft limit due to asynchronous nature of the system
  388. // and various optimizations for small queries.
  389. // Default value is 0 which means that concurrency will be automatically set
  390. // based on the reservation size.
  391. int64 concurrency = 16;
  392. // Output only. Creation time of the reservation.
  393. google.protobuf.Timestamp creation_time = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
  394. // Output only. Last update time of the reservation.
  395. google.protobuf.Timestamp update_time = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
  396. // Applicable only for reservations located within one of the BigQuery
  397. // multi-regions (US or EU).
  398. //
  399. // If set to true, this reservation is placed in the organization's
  400. // secondary region which is designated for disaster recovery purposes.
  401. // If false, this reservation is placed in the organization's default region.
  402. bool multi_region_auxiliary = 14;
  403. }
  404. // Capacity commitment is a way to purchase compute capacity for BigQuery jobs
  405. // (in the form of slots) with some committed period of usage. Annual
  406. // commitments renew by default. Commitments can be removed after their
  407. // commitment end time passes.
  408. //
  409. // In order to remove annual commitment, its plan needs to be changed
  410. // to monthly or flex first.
  411. //
  412. // A capacity commitment resource exists as a child resource of the admin
  413. // project.
  414. message CapacityCommitment {
  415. option (google.api.resource) = {
  416. type: "bigqueryreservation.googleapis.com/CapacityCommitment"
  417. pattern: "projects/{project}/locations/{location}/capacityCommitments/{capacity_commitment}"
  418. };
  419. // Commitment plan defines the current committed period. Capacity commitment
  420. // cannot be deleted during it's committed period.
  421. enum CommitmentPlan {
  422. // Invalid plan value. Requests with this value will be rejected with
  423. // error code `google.rpc.Code.INVALID_ARGUMENT`.
  424. COMMITMENT_PLAN_UNSPECIFIED = 0;
  425. // Flex commitments have committed period of 1 minute after becoming ACTIVE.
  426. // After that, they are not in a committed period anymore and can be removed
  427. // any time.
  428. FLEX = 3;
  429. // Trial commitments have a committed period of 182 days after becoming
  430. // ACTIVE. After that, they are converted to a new commitment based on the
  431. // `renewal_plan`. Default `renewal_plan` for Trial commitment is Flex so
  432. // that it can be deleted right after committed period ends.
  433. TRIAL = 5;
  434. // Monthly commitments have a committed period of 30 days after becoming
  435. // ACTIVE. After that, they are not in a committed period anymore and can be
  436. // removed any time.
  437. MONTHLY = 2;
  438. // Annual commitments have a committed period of 365 days after becoming
  439. // ACTIVE. After that they are converted to a new commitment based on the
  440. // renewal_plan.
  441. ANNUAL = 4;
  442. }
  443. // Capacity commitment can either become ACTIVE right away or transition
  444. // from PENDING to ACTIVE or FAILED.
  445. enum State {
  446. // Invalid state value.
  447. STATE_UNSPECIFIED = 0;
  448. // Capacity commitment is pending provisioning. Pending capacity commitment
  449. // does not contribute to the project's slot_capacity.
  450. PENDING = 1;
  451. // Once slots are provisioned, capacity commitment becomes active.
  452. // slot_count is added to the project's slot_capacity.
  453. ACTIVE = 2;
  454. // Capacity commitment is failed to be activated by the backend.
  455. FAILED = 3;
  456. }
  457. // Output only. The resource name of the capacity commitment, e.g.,
  458. // `projects/myproject/locations/US/capacityCommitments/123`
  459. // The commitment_id must only contain lower case alphanumeric characters or
  460. // dashes. It must start with a letter and must not end
  461. // with a dash. Its maximum length is 64 characters.
  462. string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  463. // Number of slots in this commitment.
  464. int64 slot_count = 2;
  465. // Capacity commitment commitment plan.
  466. CommitmentPlan plan = 3;
  467. // Output only. State of the commitment.
  468. State state = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  469. // Output only. The start of the current commitment period. It is applicable only for
  470. // ACTIVE capacity commitments.
  471. google.protobuf.Timestamp commitment_start_time = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
  472. // Output only. The end of the current commitment period. It is applicable only for ACTIVE
  473. // capacity commitments.
  474. google.protobuf.Timestamp commitment_end_time = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
  475. // Output only. For FAILED commitment plan, provides the reason of failure.
  476. google.rpc.Status failure_status = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
  477. // The plan this capacity commitment is converted to after commitment_end_time
  478. // passes. Once the plan is changed, committed period is extended according to
  479. // commitment plan. Only applicable for ANNUAL and TRIAL commitments.
  480. CommitmentPlan renewal_plan = 8;
  481. // Applicable only for commitments located within one of the BigQuery
  482. // multi-regions (US or EU).
  483. //
  484. // If set to true, this commitment is placed in the organization's
  485. // secondary region which is designated for disaster recovery purposes.
  486. // If false, this commitment is placed in the organization's default region.
  487. bool multi_region_auxiliary = 10;
  488. }
  489. // The request for [ReservationService.CreateReservation][google.cloud.bigquery.reservation.v1.ReservationService.CreateReservation].
  490. message CreateReservationRequest {
  491. // Required. Project, location. E.g.,
  492. // `projects/myproject/locations/US`
  493. string parent = 1 [
  494. (google.api.field_behavior) = REQUIRED,
  495. (google.api.resource_reference) = {
  496. child_type: "bigqueryreservation.googleapis.com/Reservation"
  497. }
  498. ];
  499. // The reservation ID. It must only contain lower case alphanumeric
  500. // characters or dashes. It must start with a letter and must not end
  501. // with a dash. Its maximum length is 64 characters.
  502. string reservation_id = 2;
  503. // Definition of the new reservation to create.
  504. Reservation reservation = 3;
  505. }
  506. // The request for [ReservationService.ListReservations][google.cloud.bigquery.reservation.v1.ReservationService.ListReservations].
  507. message ListReservationsRequest {
  508. // Required. The parent resource name containing project and location, e.g.:
  509. // `projects/myproject/locations/US`
  510. string parent = 1 [
  511. (google.api.field_behavior) = REQUIRED,
  512. (google.api.resource_reference) = {
  513. child_type: "bigqueryreservation.googleapis.com/Reservation"
  514. }
  515. ];
  516. // The maximum number of items to return per page.
  517. int32 page_size = 2;
  518. // The next_page_token value returned from a previous List request, if any.
  519. string page_token = 3;
  520. }
  521. // The response for [ReservationService.ListReservations][google.cloud.bigquery.reservation.v1.ReservationService.ListReservations].
  522. message ListReservationsResponse {
  523. // List of reservations visible to the user.
  524. repeated Reservation reservations = 1;
  525. // Token to retrieve the next page of results, or empty if there are no
  526. // more results in the list.
  527. string next_page_token = 2;
  528. }
  529. // The request for [ReservationService.GetReservation][google.cloud.bigquery.reservation.v1.ReservationService.GetReservation].
  530. message GetReservationRequest {
  531. // Required. Resource name of the reservation to retrieve. E.g.,
  532. // `projects/myproject/locations/US/reservations/team1-prod`
  533. string name = 1 [
  534. (google.api.field_behavior) = REQUIRED,
  535. (google.api.resource_reference) = {
  536. type: "bigqueryreservation.googleapis.com/Reservation"
  537. }
  538. ];
  539. }
  540. // The request for [ReservationService.DeleteReservation][google.cloud.bigquery.reservation.v1.ReservationService.DeleteReservation].
  541. message DeleteReservationRequest {
  542. // Required. Resource name of the reservation to retrieve. E.g.,
  543. // `projects/myproject/locations/US/reservations/team1-prod`
  544. string name = 1 [
  545. (google.api.field_behavior) = REQUIRED,
  546. (google.api.resource_reference) = {
  547. type: "bigqueryreservation.googleapis.com/Reservation"
  548. }
  549. ];
  550. }
  551. // The request for [ReservationService.UpdateReservation][google.cloud.bigquery.reservation.v1.ReservationService.UpdateReservation].
  552. message UpdateReservationRequest {
  553. // Content of the reservation to update.
  554. Reservation reservation = 1;
  555. // Standard field mask for the set of fields to be updated.
  556. google.protobuf.FieldMask update_mask = 2;
  557. }
  558. // The request for [ReservationService.CreateCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.CreateCapacityCommitment].
  559. message CreateCapacityCommitmentRequest {
  560. // Required. Resource name of the parent reservation. E.g.,
  561. // `projects/myproject/locations/US`
  562. string parent = 1 [
  563. (google.api.field_behavior) = REQUIRED,
  564. (google.api.resource_reference) = {
  565. child_type: "bigqueryreservation.googleapis.com/CapacityCommitment"
  566. }
  567. ];
  568. // Content of the capacity commitment to create.
  569. CapacityCommitment capacity_commitment = 2;
  570. // If true, fail the request if another project in the organization has a
  571. // capacity commitment.
  572. bool enforce_single_admin_project_per_org = 4;
  573. // The optional capacity commitment ID. Capacity commitment name will be
  574. // generated automatically if this field is empty.
  575. // This field must only contain lower case alphanumeric characters or dashes.
  576. // The first and last character cannot be a dash. Max length is 64 characters.
  577. // NOTE: this ID won't be kept if the capacity commitment is split or merged.
  578. string capacity_commitment_id = 5;
  579. }
  580. // The request for [ReservationService.ListCapacityCommitments][google.cloud.bigquery.reservation.v1.ReservationService.ListCapacityCommitments].
  581. message ListCapacityCommitmentsRequest {
  582. // Required. Resource name of the parent reservation. E.g.,
  583. // `projects/myproject/locations/US`
  584. string parent = 1 [
  585. (google.api.field_behavior) = REQUIRED,
  586. (google.api.resource_reference) = {
  587. child_type: "bigqueryreservation.googleapis.com/CapacityCommitment"
  588. }
  589. ];
  590. // The maximum number of items to return.
  591. int32 page_size = 2;
  592. // The next_page_token value returned from a previous List request, if any.
  593. string page_token = 3;
  594. }
  595. // The response for [ReservationService.ListCapacityCommitments][google.cloud.bigquery.reservation.v1.ReservationService.ListCapacityCommitments].
  596. message ListCapacityCommitmentsResponse {
  597. // List of capacity commitments visible to the user.
  598. repeated CapacityCommitment capacity_commitments = 1;
  599. // Token to retrieve the next page of results, or empty if there are no
  600. // more results in the list.
  601. string next_page_token = 2;
  602. }
  603. // The request for [ReservationService.GetCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.GetCapacityCommitment].
  604. message GetCapacityCommitmentRequest {
  605. // Required. Resource name of the capacity commitment to retrieve. E.g.,
  606. // `projects/myproject/locations/US/capacityCommitments/123`
  607. string name = 1 [
  608. (google.api.field_behavior) = REQUIRED,
  609. (google.api.resource_reference) = {
  610. type: "bigqueryreservation.googleapis.com/CapacityCommitment"
  611. }
  612. ];
  613. }
  614. // The request for [ReservationService.DeleteCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.DeleteCapacityCommitment].
  615. message DeleteCapacityCommitmentRequest {
  616. // Required. Resource name of the capacity commitment to delete. E.g.,
  617. // `projects/myproject/locations/US/capacityCommitments/123`
  618. string name = 1 [
  619. (google.api.field_behavior) = REQUIRED,
  620. (google.api.resource_reference) = {
  621. type: "bigqueryreservation.googleapis.com/CapacityCommitment"
  622. }
  623. ];
  624. // Can be used to force delete commitments even if assignments exist. Deleting
  625. // commitments with assignments may cause queries to fail if they no longer
  626. // have access to slots.
  627. bool force = 3;
  628. }
  629. // The request for [ReservationService.UpdateCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.UpdateCapacityCommitment].
  630. message UpdateCapacityCommitmentRequest {
  631. // Content of the capacity commitment to update.
  632. CapacityCommitment capacity_commitment = 1;
  633. // Standard field mask for the set of fields to be updated.
  634. google.protobuf.FieldMask update_mask = 2;
  635. }
  636. // The request for [ReservationService.SplitCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.SplitCapacityCommitment].
  637. message SplitCapacityCommitmentRequest {
  638. // Required. The resource name e.g.,:
  639. // `projects/myproject/locations/US/capacityCommitments/123`
  640. string name = 1 [
  641. (google.api.field_behavior) = REQUIRED,
  642. (google.api.resource_reference) = {
  643. type: "bigqueryreservation.googleapis.com/CapacityCommitment"
  644. }
  645. ];
  646. // Number of slots in the capacity commitment after the split.
  647. int64 slot_count = 2;
  648. }
  649. // The response for [ReservationService.SplitCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.SplitCapacityCommitment].
  650. message SplitCapacityCommitmentResponse {
  651. // First capacity commitment, result of a split.
  652. CapacityCommitment first = 1;
  653. // Second capacity commitment, result of a split.
  654. CapacityCommitment second = 2;
  655. }
  656. // The request for [ReservationService.MergeCapacityCommitments][google.cloud.bigquery.reservation.v1.ReservationService.MergeCapacityCommitments].
  657. message MergeCapacityCommitmentsRequest {
  658. // Parent resource that identifies admin project and location e.g.,
  659. // `projects/myproject/locations/us`
  660. string parent = 1 [(google.api.resource_reference) = {
  661. child_type: "bigqueryreservation.googleapis.com/CapacityCommitment"
  662. }];
  663. // Ids of capacity commitments to merge.
  664. // These capacity commitments must exist under admin project and location
  665. // specified in the parent.
  666. // ID is the last portion of capacity commitment name e.g., 'abc' for
  667. // projects/myproject/locations/US/capacityCommitments/abc
  668. repeated string capacity_commitment_ids = 2;
  669. }
  670. // An assignment allows a project to submit jobs
  671. // of a certain type using slots from the specified reservation.
  672. message Assignment {
  673. option (google.api.resource) = {
  674. type: "bigqueryreservation.googleapis.com/Assignment"
  675. pattern: "projects/{project}/locations/{location}/reservations/{reservation}/assignments/{assignment}"
  676. };
  677. // Types of job, which could be specified when using the reservation.
  678. enum JobType {
  679. // Invalid type. Requests with this value will be rejected with
  680. // error code `google.rpc.Code.INVALID_ARGUMENT`.
  681. JOB_TYPE_UNSPECIFIED = 0;
  682. // Pipeline (load/export) jobs from the project will use the reservation.
  683. PIPELINE = 1;
  684. // Query jobs from the project will use the reservation.
  685. QUERY = 2;
  686. // BigQuery ML jobs that use services external to BigQuery for model
  687. // training. These jobs will not utilize idle slots from other reservations.
  688. ML_EXTERNAL = 3;
  689. }
  690. // Assignment will remain in PENDING state if no active capacity commitment is
  691. // present. It will become ACTIVE when some capacity commitment becomes
  692. // active.
  693. enum State {
  694. // Invalid state value.
  695. STATE_UNSPECIFIED = 0;
  696. // Queries from assignee will be executed as on-demand, if related
  697. // assignment is pending.
  698. PENDING = 1;
  699. // Assignment is ready.
  700. ACTIVE = 2;
  701. }
  702. // Output only. Name of the resource. E.g.:
  703. // `projects/myproject/locations/US/reservations/team1-prod/assignments/123`.
  704. // The assignment_id must only contain lower case alphanumeric characters or
  705. // dashes and the max length is 64 characters.
  706. string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  707. // The resource which will use the reservation. E.g.
  708. // `projects/myproject`, `folders/123`, or `organizations/456`.
  709. string assignee = 4;
  710. // Which type of jobs will use the reservation.
  711. JobType job_type = 3;
  712. // Output only. State of the assignment.
  713. State state = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  714. }
  715. // The request for [ReservationService.CreateAssignment][google.cloud.bigquery.reservation.v1.ReservationService.CreateAssignment].
  716. // Note: "bigquery.reservationAssignments.create" permission is required on the
  717. // related assignee.
  718. message CreateAssignmentRequest {
  719. // Required. The parent resource name of the assignment
  720. // E.g. `projects/myproject/locations/US/reservations/team1-prod`
  721. string parent = 1 [
  722. (google.api.field_behavior) = REQUIRED,
  723. (google.api.resource_reference) = {
  724. child_type: "bigqueryreservation.googleapis.com/Assignment"
  725. }
  726. ];
  727. // Assignment resource to create.
  728. Assignment assignment = 2;
  729. // The optional assignment ID. Assignment name will be generated automatically
  730. // if this field is empty.
  731. // This field must only contain lower case alphanumeric characters or dashes.
  732. // Max length is 64 characters.
  733. string assignment_id = 4;
  734. }
  735. // The request for [ReservationService.ListAssignments][google.cloud.bigquery.reservation.v1.ReservationService.ListAssignments].
  736. message ListAssignmentsRequest {
  737. // Required. The parent resource name e.g.:
  738. //
  739. // `projects/myproject/locations/US/reservations/team1-prod`
  740. //
  741. // Or:
  742. //
  743. // `projects/myproject/locations/US/reservations/-`
  744. string parent = 1 [
  745. (google.api.field_behavior) = REQUIRED,
  746. (google.api.resource_reference) = {
  747. child_type: "bigqueryreservation.googleapis.com/Assignment"
  748. }
  749. ];
  750. // The maximum number of items to return per page.
  751. int32 page_size = 2;
  752. // The next_page_token value returned from a previous List request, if any.
  753. string page_token = 3;
  754. }
  755. // The response for [ReservationService.ListAssignments][google.cloud.bigquery.reservation.v1.ReservationService.ListAssignments].
  756. message ListAssignmentsResponse {
  757. // List of assignments visible to the user.
  758. repeated Assignment assignments = 1;
  759. // Token to retrieve the next page of results, or empty if there are no
  760. // more results in the list.
  761. string next_page_token = 2;
  762. }
  763. // The request for [ReservationService.DeleteAssignment][google.cloud.bigquery.reservation.v1.ReservationService.DeleteAssignment].
  764. // Note: "bigquery.reservationAssignments.delete" permission is required on the
  765. // related assignee.
  766. message DeleteAssignmentRequest {
  767. // Required. Name of the resource, e.g.
  768. // `projects/myproject/locations/US/reservations/team1-prod/assignments/123`
  769. string name = 1 [
  770. (google.api.field_behavior) = REQUIRED,
  771. (google.api.resource_reference) = {
  772. type: "bigqueryreservation.googleapis.com/Assignment"
  773. }
  774. ];
  775. }
  776. // The request for
  777. // [ReservationService.SearchAssignments][google.cloud.bigquery.reservation.v1.ReservationService.SearchAssignments].
  778. // Note: "bigquery.reservationAssignments.search" permission is required on the
  779. // related assignee.
  780. message SearchAssignmentsRequest {
  781. // Required. The resource name of the admin project(containing project and location),
  782. // e.g.:
  783. // `projects/myproject/locations/US`.
  784. string parent = 1 [
  785. (google.api.field_behavior) = REQUIRED,
  786. (google.api.resource_reference) = {
  787. type: "locations.googleapis.com/Location"
  788. }
  789. ];
  790. // Please specify resource name as assignee in the query.
  791. //
  792. // Examples:
  793. //
  794. // * `assignee=projects/myproject`
  795. // * `assignee=folders/123`
  796. // * `assignee=organizations/456`
  797. string query = 2;
  798. // The maximum number of items to return per page.
  799. int32 page_size = 3;
  800. // The next_page_token value returned from a previous List request, if any.
  801. string page_token = 4;
  802. }
  803. // The request for
  804. // [ReservationService.SearchAllAssignments][google.cloud.bigquery.reservation.v1.ReservationService.SearchAllAssignments].
  805. // Note: "bigquery.reservationAssignments.search" permission is required on the
  806. // related assignee.
  807. message SearchAllAssignmentsRequest {
  808. // Required. The resource name with location (project name could be the wildcard '-'),
  809. // e.g.:
  810. // `projects/-/locations/US`.
  811. string parent = 1 [
  812. (google.api.field_behavior) = REQUIRED,
  813. (google.api.resource_reference) = {
  814. type: "locations.googleapis.com/Location"
  815. }
  816. ];
  817. // Please specify resource name as assignee in the query.
  818. //
  819. // Examples:
  820. //
  821. // * `assignee=projects/myproject`
  822. // * `assignee=folders/123`
  823. // * `assignee=organizations/456`
  824. string query = 2;
  825. // The maximum number of items to return per page.
  826. int32 page_size = 3;
  827. // The next_page_token value returned from a previous List request, if any.
  828. string page_token = 4;
  829. }
  830. // The response for [ReservationService.SearchAssignments][google.cloud.bigquery.reservation.v1.ReservationService.SearchAssignments].
  831. message SearchAssignmentsResponse {
  832. // List of assignments visible to the user.
  833. repeated Assignment assignments = 1;
  834. // Token to retrieve the next page of results, or empty if there are no
  835. // more results in the list.
  836. string next_page_token = 2;
  837. }
  838. // The response for [ReservationService.SearchAllAssignments][google.cloud.bigquery.reservation.v1.ReservationService.SearchAllAssignments].
  839. message SearchAllAssignmentsResponse {
  840. // List of assignments visible to the user.
  841. repeated Assignment assignments = 1;
  842. // Token to retrieve the next page of results, or empty if there are no
  843. // more results in the list.
  844. string next_page_token = 2;
  845. }
  846. // The request for
  847. // [ReservationService.MoveAssignment][google.cloud.bigquery.reservation.v1.ReservationService.MoveAssignment].
  848. //
  849. // **Note**: "bigquery.reservationAssignments.create" permission is required on
  850. // the destination_id.
  851. //
  852. // **Note**: "bigquery.reservationAssignments.create" and
  853. // "bigquery.reservationAssignments.delete" permission are required on the
  854. // related assignee.
  855. message MoveAssignmentRequest {
  856. // Required. The resource name of the assignment,
  857. // e.g.
  858. // `projects/myproject/locations/US/reservations/team1-prod/assignments/123`
  859. string name = 1 [
  860. (google.api.field_behavior) = REQUIRED,
  861. (google.api.resource_reference) = {
  862. type: "bigqueryreservation.googleapis.com/Assignment"
  863. }
  864. ];
  865. // The new reservation ID, e.g.:
  866. // `projects/myotherproject/locations/US/reservations/team2-prod`
  867. string destination_id = 3 [(google.api.resource_reference) = {
  868. child_type: "bigqueryreservation.googleapis.com/Assignment"
  869. }];
  870. }
  871. // The request for [ReservationService.UpdateAssignment][google.cloud.bigquery.reservation.v1.ReservationService.UpdateAssignment].
  872. message UpdateAssignmentRequest {
  873. // Content of the assignment to update.
  874. Assignment assignment = 1;
  875. // Standard field mask for the set of fields to be updated.
  876. google.protobuf.FieldMask update_mask = 2;
  877. }
  878. // Fully qualified reference to BigQuery table.
  879. // Internally stored as google.cloud.bi.v1.BqTableReference.
  880. message TableReference {
  881. // The assigned project ID of the project.
  882. string project_id = 1;
  883. // The ID of the dataset in the above project.
  884. string dataset_id = 2;
  885. // The ID of the table in the above dataset.
  886. string table_id = 3;
  887. }
  888. // Represents a BI Reservation.
  889. message BiReservation {
  890. option (google.api.resource) = {
  891. type: "bigqueryreservation.googleapis.com/BiReservation"
  892. pattern: "projects/{project}/locations/{location}/biReservation"
  893. };
  894. // The resource name of the singleton BI reservation.
  895. // Reservation names have the form
  896. // `projects/{project_id}/locations/{location_id}/biReservation`.
  897. string name = 1;
  898. // Output only. The last update timestamp of a reservation.
  899. google.protobuf.Timestamp update_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  900. // Size of a reservation, in bytes.
  901. int64 size = 4;
  902. // Preferred tables to use BI capacity for.
  903. repeated TableReference preferred_tables = 5;
  904. }
  905. // A request to get a singleton BI reservation.
  906. message GetBiReservationRequest {
  907. // Required. Name of the requested reservation, for example:
  908. // `projects/{project_id}/locations/{location_id}/biReservation`
  909. string name = 1 [
  910. (google.api.field_behavior) = REQUIRED,
  911. (google.api.resource_reference) = {
  912. type: "bigqueryreservation.googleapis.com/BiReservation"
  913. }
  914. ];
  915. }
  916. // A request to update a BI reservation.
  917. message UpdateBiReservationRequest {
  918. // A reservation to update.
  919. BiReservation bi_reservation = 1;
  920. // A list of fields to be updated in this request.
  921. google.protobuf.FieldMask update_mask = 2;
  922. }