index_endpoint_service.proto 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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.aiplatform.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/cloud/aiplatform/v1/index_endpoint.proto";
  21. import "google/cloud/aiplatform/v1/operation.proto";
  22. import "google/longrunning/operations.proto";
  23. import "google/protobuf/field_mask.proto";
  24. option csharp_namespace = "Google.Cloud.AIPlatform.V1";
  25. option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1;aiplatform";
  26. option java_multiple_files = true;
  27. option java_outer_classname = "IndexEndpointServiceProto";
  28. option java_package = "com.google.cloud.aiplatform.v1";
  29. option php_namespace = "Google\\Cloud\\AIPlatform\\V1";
  30. option ruby_package = "Google::Cloud::AIPlatform::V1";
  31. // A service for managing Vertex AI's IndexEndpoints.
  32. service IndexEndpointService {
  33. option (google.api.default_host) = "aiplatform.googleapis.com";
  34. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  35. // Creates an IndexEndpoint.
  36. rpc CreateIndexEndpoint(CreateIndexEndpointRequest) returns (google.longrunning.Operation) {
  37. option (google.api.http) = {
  38. post: "/v1/{parent=projects/*/locations/*}/indexEndpoints"
  39. body: "index_endpoint"
  40. };
  41. option (google.api.method_signature) = "parent,index_endpoint";
  42. option (google.longrunning.operation_info) = {
  43. response_type: "IndexEndpoint"
  44. metadata_type: "CreateIndexEndpointOperationMetadata"
  45. };
  46. }
  47. // Gets an IndexEndpoint.
  48. rpc GetIndexEndpoint(GetIndexEndpointRequest) returns (IndexEndpoint) {
  49. option (google.api.http) = {
  50. get: "/v1/{name=projects/*/locations/*/indexEndpoints/*}"
  51. };
  52. option (google.api.method_signature) = "name";
  53. }
  54. // Lists IndexEndpoints in a Location.
  55. rpc ListIndexEndpoints(ListIndexEndpointsRequest) returns (ListIndexEndpointsResponse) {
  56. option (google.api.http) = {
  57. get: "/v1/{parent=projects/*/locations/*}/indexEndpoints"
  58. };
  59. option (google.api.method_signature) = "parent";
  60. }
  61. // Updates an IndexEndpoint.
  62. rpc UpdateIndexEndpoint(UpdateIndexEndpointRequest) returns (IndexEndpoint) {
  63. option (google.api.http) = {
  64. patch: "/v1/{index_endpoint.name=projects/*/locations/*/indexEndpoints/*}"
  65. body: "index_endpoint"
  66. };
  67. option (google.api.method_signature) = "index_endpoint,update_mask";
  68. }
  69. // Deletes an IndexEndpoint.
  70. rpc DeleteIndexEndpoint(DeleteIndexEndpointRequest) returns (google.longrunning.Operation) {
  71. option (google.api.http) = {
  72. delete: "/v1/{name=projects/*/locations/*/indexEndpoints/*}"
  73. };
  74. option (google.api.method_signature) = "name";
  75. option (google.longrunning.operation_info) = {
  76. response_type: "google.protobuf.Empty"
  77. metadata_type: "DeleteOperationMetadata"
  78. };
  79. }
  80. // Deploys an Index into this IndexEndpoint, creating a DeployedIndex within
  81. // it.
  82. // Only non-empty Indexes can be deployed.
  83. rpc DeployIndex(DeployIndexRequest) returns (google.longrunning.Operation) {
  84. option (google.api.http) = {
  85. post: "/v1/{index_endpoint=projects/*/locations/*/indexEndpoints/*}:deployIndex"
  86. body: "*"
  87. };
  88. option (google.api.method_signature) = "index_endpoint,deployed_index";
  89. option (google.longrunning.operation_info) = {
  90. response_type: "DeployIndexResponse"
  91. metadata_type: "DeployIndexOperationMetadata"
  92. };
  93. }
  94. // Undeploys an Index from an IndexEndpoint, removing a DeployedIndex from it,
  95. // and freeing all resources it's using.
  96. rpc UndeployIndex(UndeployIndexRequest) returns (google.longrunning.Operation) {
  97. option (google.api.http) = {
  98. post: "/v1/{index_endpoint=projects/*/locations/*/indexEndpoints/*}:undeployIndex"
  99. body: "*"
  100. };
  101. option (google.api.method_signature) = "index_endpoint,deployed_index_id";
  102. option (google.longrunning.operation_info) = {
  103. response_type: "UndeployIndexResponse"
  104. metadata_type: "UndeployIndexOperationMetadata"
  105. };
  106. }
  107. // Update an existing DeployedIndex under an IndexEndpoint.
  108. rpc MutateDeployedIndex(MutateDeployedIndexRequest) returns (google.longrunning.Operation) {
  109. option (google.api.http) = {
  110. post: "/v1/{index_endpoint=projects/*/locations/*/indexEndpoints/*}:mutateDeployedIndex"
  111. body: "deployed_index"
  112. };
  113. option (google.api.method_signature) = "index_endpoint,deployed_index";
  114. option (google.longrunning.operation_info) = {
  115. response_type: "MutateDeployedIndexResponse"
  116. metadata_type: "MutateDeployedIndexOperationMetadata"
  117. };
  118. }
  119. }
  120. // Request message for [IndexEndpointService.CreateIndexEndpoint][google.cloud.aiplatform.v1.IndexEndpointService.CreateIndexEndpoint].
  121. message CreateIndexEndpointRequest {
  122. // Required. The resource name of the Location to create the IndexEndpoint in.
  123. // Format: `projects/{project}/locations/{location}`
  124. string parent = 1 [
  125. (google.api.field_behavior) = REQUIRED,
  126. (google.api.resource_reference) = {
  127. type: "locations.googleapis.com/Location"
  128. }
  129. ];
  130. // Required. The IndexEndpoint to create.
  131. IndexEndpoint index_endpoint = 2 [(google.api.field_behavior) = REQUIRED];
  132. }
  133. // Runtime operation information for
  134. // [IndexEndpointService.CreateIndexEndpoint][google.cloud.aiplatform.v1.IndexEndpointService.CreateIndexEndpoint].
  135. message CreateIndexEndpointOperationMetadata {
  136. // The operation generic information.
  137. GenericOperationMetadata generic_metadata = 1;
  138. }
  139. // Request message for [IndexEndpointService.GetIndexEndpoint][google.cloud.aiplatform.v1.IndexEndpointService.GetIndexEndpoint]
  140. message GetIndexEndpointRequest {
  141. // Required. The name of the IndexEndpoint resource.
  142. // Format:
  143. // `projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}`
  144. string name = 1 [
  145. (google.api.field_behavior) = REQUIRED,
  146. (google.api.resource_reference) = {
  147. type: "aiplatform.googleapis.com/IndexEndpoint"
  148. }
  149. ];
  150. }
  151. // Request message for [IndexEndpointService.ListIndexEndpoints][google.cloud.aiplatform.v1.IndexEndpointService.ListIndexEndpoints].
  152. message ListIndexEndpointsRequest {
  153. // Required. The resource name of the Location from which to list the IndexEndpoints.
  154. // Format: `projects/{project}/locations/{location}`
  155. string parent = 1 [
  156. (google.api.field_behavior) = REQUIRED,
  157. (google.api.resource_reference) = {
  158. type: "locations.googleapis.com/Location"
  159. }
  160. ];
  161. // Optional. An expression for filtering the results of the request. For field names
  162. // both snake_case and camelCase are supported.
  163. //
  164. // * `index_endpoint` supports = and !=. `index_endpoint` represents the
  165. // IndexEndpoint ID, ie. the last segment of the IndexEndpoint's
  166. // [resourcename][google.cloud.aiplatform.v1.IndexEndpoint.name].
  167. // * `display_name` supports =, != and regex()
  168. // (uses [re2](https://github.com/google/re2/wiki/Syntax) syntax)
  169. // * `labels` supports general map functions that is:
  170. // `labels.key=value` - key:value equality
  171. // `labels.key:* or labels:key - key existence
  172. // A key including a space must be quoted. `labels."a key"`.
  173. //
  174. // Some examples:
  175. // * `index_endpoint="1"`
  176. // * `display_name="myDisplayName"`
  177. // * `regex(display_name, "^A") -> The display name starts with an A.
  178. // * `labels.myKey="myValue"`
  179. string filter = 2 [(google.api.field_behavior) = OPTIONAL];
  180. // Optional. The standard list page size.
  181. int32 page_size = 3 [(google.api.field_behavior) = OPTIONAL];
  182. // Optional. The standard list page token.
  183. // Typically obtained via
  184. // [ListIndexEndpointsResponse.next_page_token][google.cloud.aiplatform.v1.ListIndexEndpointsResponse.next_page_token] of the previous
  185. // [IndexEndpointService.ListIndexEndpoints][google.cloud.aiplatform.v1.IndexEndpointService.ListIndexEndpoints] call.
  186. string page_token = 4 [(google.api.field_behavior) = OPTIONAL];
  187. // Optional. Mask specifying which fields to read.
  188. google.protobuf.FieldMask read_mask = 5 [(google.api.field_behavior) = OPTIONAL];
  189. }
  190. // Response message for [IndexEndpointService.ListIndexEndpoints][google.cloud.aiplatform.v1.IndexEndpointService.ListIndexEndpoints].
  191. message ListIndexEndpointsResponse {
  192. // List of IndexEndpoints in the requested page.
  193. repeated IndexEndpoint index_endpoints = 1;
  194. // A token to retrieve next page of results.
  195. // Pass to [ListIndexEndpointsRequest.page_token][google.cloud.aiplatform.v1.ListIndexEndpointsRequest.page_token] to obtain that page.
  196. string next_page_token = 2;
  197. }
  198. // Request message for [IndexEndpointService.UpdateIndexEndpoint][google.cloud.aiplatform.v1.IndexEndpointService.UpdateIndexEndpoint].
  199. message UpdateIndexEndpointRequest {
  200. // Required. The IndexEndpoint which replaces the resource on the server.
  201. IndexEndpoint index_endpoint = 1 [(google.api.field_behavior) = REQUIRED];
  202. // Required. The update mask applies to the resource. See [google.protobuf.FieldMask][google.protobuf.FieldMask].
  203. google.protobuf.FieldMask update_mask = 2 [(google.api.field_behavior) = REQUIRED];
  204. }
  205. // Request message for [IndexEndpointService.DeleteIndexEndpoint][google.cloud.aiplatform.v1.IndexEndpointService.DeleteIndexEndpoint].
  206. message DeleteIndexEndpointRequest {
  207. // Required. The name of the IndexEndpoint resource to be deleted.
  208. // Format:
  209. // `projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}`
  210. string name = 1 [
  211. (google.api.field_behavior) = REQUIRED,
  212. (google.api.resource_reference) = {
  213. type: "aiplatform.googleapis.com/IndexEndpoint"
  214. }
  215. ];
  216. }
  217. // Request message for [IndexEndpointService.DeployIndex][google.cloud.aiplatform.v1.IndexEndpointService.DeployIndex].
  218. message DeployIndexRequest {
  219. // Required. The name of the IndexEndpoint resource into which to deploy an Index.
  220. // Format:
  221. // `projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}`
  222. string index_endpoint = 1 [
  223. (google.api.field_behavior) = REQUIRED,
  224. (google.api.resource_reference) = {
  225. type: "aiplatform.googleapis.com/IndexEndpoint"
  226. }
  227. ];
  228. // Required. The DeployedIndex to be created within the IndexEndpoint.
  229. DeployedIndex deployed_index = 2 [(google.api.field_behavior) = REQUIRED];
  230. }
  231. // Response message for [IndexEndpointService.DeployIndex][google.cloud.aiplatform.v1.IndexEndpointService.DeployIndex].
  232. message DeployIndexResponse {
  233. // The DeployedIndex that had been deployed in the IndexEndpoint.
  234. DeployedIndex deployed_index = 1;
  235. }
  236. // Runtime operation information for [IndexEndpointService.DeployIndex][google.cloud.aiplatform.v1.IndexEndpointService.DeployIndex].
  237. message DeployIndexOperationMetadata {
  238. // The operation generic information.
  239. GenericOperationMetadata generic_metadata = 1;
  240. // The unique index id specified by user
  241. string deployed_index_id = 2;
  242. }
  243. // Request message for [IndexEndpointService.UndeployIndex][google.cloud.aiplatform.v1.IndexEndpointService.UndeployIndex].
  244. message UndeployIndexRequest {
  245. // Required. The name of the IndexEndpoint resource from which to undeploy an Index.
  246. // Format:
  247. // `projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}`
  248. string index_endpoint = 1 [
  249. (google.api.field_behavior) = REQUIRED,
  250. (google.api.resource_reference) = {
  251. type: "aiplatform.googleapis.com/IndexEndpoint"
  252. }
  253. ];
  254. // Required. The ID of the DeployedIndex to be undeployed from the IndexEndpoint.
  255. string deployed_index_id = 2 [(google.api.field_behavior) = REQUIRED];
  256. }
  257. // Response message for [IndexEndpointService.UndeployIndex][google.cloud.aiplatform.v1.IndexEndpointService.UndeployIndex].
  258. message UndeployIndexResponse {
  259. }
  260. // Runtime operation information for [IndexEndpointService.UndeployIndex][google.cloud.aiplatform.v1.IndexEndpointService.UndeployIndex].
  261. message UndeployIndexOperationMetadata {
  262. // The operation generic information.
  263. GenericOperationMetadata generic_metadata = 1;
  264. }
  265. // Request message for [IndexEndpointService.MutateDeployedIndex][google.cloud.aiplatform.v1.IndexEndpointService.MutateDeployedIndex].
  266. message MutateDeployedIndexRequest {
  267. // Required. The name of the IndexEndpoint resource into which to deploy an Index.
  268. // Format:
  269. // `projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}`
  270. string index_endpoint = 1 [
  271. (google.api.field_behavior) = REQUIRED,
  272. (google.api.resource_reference) = {
  273. type: "aiplatform.googleapis.com/IndexEndpoint"
  274. }
  275. ];
  276. // Required. The DeployedIndex to be updated within the IndexEndpoint.
  277. // Currently, the updatable fields are [DeployedIndex][automatic_resources]
  278. // and [DeployedIndex][dedicated_resources]
  279. DeployedIndex deployed_index = 2 [(google.api.field_behavior) = REQUIRED];
  280. }
  281. // Response message for [IndexEndpointService.MutateDeployedIndex][google.cloud.aiplatform.v1.IndexEndpointService.MutateDeployedIndex].
  282. message MutateDeployedIndexResponse {
  283. // The DeployedIndex that had been updated in the IndexEndpoint.
  284. DeployedIndex deployed_index = 1;
  285. }
  286. // Runtime operation information for
  287. // [IndexEndpointService.MutateDeployedIndex][google.cloud.aiplatform.v1.IndexEndpointService.MutateDeployedIndex].
  288. message MutateDeployedIndexOperationMetadata {
  289. // The operation generic information.
  290. GenericOperationMetadata generic_metadata = 1;
  291. // The unique index id specified by user
  292. string deployed_index_id = 2;
  293. }