procurement_service.proto 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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.commerce.consumer.procurement.v1alpha1;
  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/cloud/commerce/consumer/procurement/v1alpha1/order.proto";
  21. import "google/longrunning/operations.proto";
  22. option go_package = "google.golang.org/genproto/googleapis/cloud/commerce/consumer/procurement/v1alpha1;procurement";
  23. option java_multiple_files = true;
  24. option java_package = "com.google.cloud.commerce.consumer.procurement.v1alpha1";
  25. // ConsumerProcurementService allows customers to make purchases of products
  26. // served by the Cloud Commerce platform.
  27. //
  28. //
  29. // When purchases are made, the
  30. // [ConsumerProcurementService][google.cloud.commerce.consumer.procurement.v1alpha1.ConsumerProcurementService] programs the appropriate backends, including
  31. // both Google's own infrastructure, as well as third-party systems, and to
  32. // enable billing setup for charging for the procured item.
  33. //
  34. service ConsumerProcurementService {
  35. option (google.api.default_host) = "cloudcommerceconsumerprocurement.googleapis.com";
  36. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  37. // Creates a new [Order][google.cloud.commerce.consumer.procurement.v1alpha1.Order].
  38. //
  39. // The returned long-running operation is in-progress until the backend
  40. // completes the creation of the resource. Once completed, the order is
  41. // in [OrderState.ORDER_STATE_ACTIVE][google.cloud.commerce.consumer.procurement.v1alpha1.OrderState.ORDER_STATE_ACTIVE]. In case of failure, the
  42. // order resource will be removed.
  43. rpc PlaceOrder(PlaceOrderRequest) returns (google.longrunning.Operation) {
  44. option (google.api.http) = {
  45. post: "/v1alpha1/{parent=billingAccounts/*}/orders:place"
  46. body: "*"
  47. };
  48. option (google.longrunning.operation_info) = {
  49. response_type: "Order"
  50. metadata_type: "PlaceOrderMetadata"
  51. };
  52. }
  53. // Returns the requested [Order][google.cloud.commerce.consumer.procurement.v1alpha1.Order] resource.
  54. rpc GetOrder(GetOrderRequest) returns (Order) {
  55. option (google.api.http) = {
  56. get: "/v1alpha1/{name=billingAccounts/*/orders/*}"
  57. };
  58. }
  59. // Lists [Order][google.cloud.commerce.consumer.procurement.v1alpha1.Order] resources that the user has access to, within the
  60. // scope of the parent resource.
  61. rpc ListOrders(ListOrdersRequest) returns (ListOrdersResponse) {
  62. option (google.api.http) = {
  63. get: "/v1alpha1/{parent=billingAccounts/*}/orders"
  64. };
  65. }
  66. }
  67. // Request message for [ConsumerProcurementService.PlaceOrder][google.cloud.commerce.consumer.procurement.v1alpha1.ConsumerProcurementService.PlaceOrder].
  68. message PlaceOrderRequest {
  69. // Required. The resource name of the parent resource.
  70. // This field has the form `billingAccounts/{billing-account-id}`.
  71. string parent = 1 [
  72. (google.api.field_behavior) = REQUIRED,
  73. (google.api.resource_reference) = {
  74. type: "cloudbilling.googleapis.com/BillingAccount"
  75. }
  76. ];
  77. // Required. The user-specified name of the order being placed.
  78. // Must be unique within a billing account.
  79. string display_name = 6 [(google.api.field_behavior) = REQUIRED];
  80. // Optional. Places order for offer. Required when an offer-based order is being placed.
  81. repeated LineItemInfo line_item_info = 10 [(google.api.field_behavior) = OPTIONAL];
  82. // Optional. A unique identifier for this request.
  83. // The server will ignore subsequent requests that provide a duplicate request
  84. // ID for at least 120 minutes after the first request.
  85. //
  86. // The request ID must be a valid
  87. // [UUID](https://en.wikipedia.org/wiki/Universally_unique_identifier#Format).
  88. string request_id = 7 [(google.api.field_behavior) = OPTIONAL];
  89. }
  90. // Message stored in the metadata field of the Operation returned by
  91. // [ConsumerProcurementService.PlaceOrder][google.cloud.commerce.consumer.procurement.v1alpha1.ConsumerProcurementService.PlaceOrder].
  92. message PlaceOrderMetadata {
  93. }
  94. // Request message for [ConsumerProcurementService.GetOrder][google.cloud.commerce.consumer.procurement.v1alpha1.ConsumerProcurementService.GetOrder]
  95. message GetOrderRequest {
  96. // Required. The name of the order to retrieve.
  97. string name = 1 [(google.api.field_behavior) = REQUIRED];
  98. }
  99. // Request message for [ConsumerProcurementService.ListOrders][google.cloud.commerce.consumer.procurement.v1alpha1.ConsumerProcurementService.ListOrders].
  100. message ListOrdersRequest {
  101. // Required. The parent resource to query for orders.
  102. // This field has the form `billingAccounts/{billing-account-id}`.
  103. string parent = 1 [(google.api.field_behavior) = REQUIRED];
  104. // The maximum number of entries requested.
  105. // The default page size is 25 and the maximum page size is 200.
  106. int32 page_size = 2;
  107. // The token for fetching the next page.
  108. string page_token = 3;
  109. // Filter that you can use to limit the list request.
  110. //
  111. // A query string that can match a selected set of attributes
  112. // with string values. For example, `display_name=abc`.
  113. // Supported query attributes are
  114. //
  115. // * `display_name`
  116. //
  117. // If the query contains special characters other than letters,
  118. // underscore, or digits, the phrase must be quoted with double quotes. For
  119. // example, `display_name="foo:bar"`, where the display name needs to be
  120. // quoted because it contains special character colon.
  121. //
  122. // Queries can be combined with `OR`, and `NOT` to form more complex queries.
  123. // You can also group them to force a desired evaluation order.
  124. // For example, `display_name=abc OR display_name=def`.
  125. string filter = 4;
  126. }
  127. // Response message for [ConsumerProcurementService.ListOrders][google.cloud.commerce.consumer.procurement.v1alpha1.ConsumerProcurementService.ListOrders].
  128. message ListOrdersResponse {
  129. // The list of orders in this response.
  130. repeated Order orders = 1;
  131. // The token for fetching the next page.
  132. string next_page_token = 2;
  133. }