featurestore_service.proto 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239
  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/entity_type.proto";
  21. import "google/cloud/aiplatform/v1/feature.proto";
  22. import "google/cloud/aiplatform/v1/feature_selector.proto";
  23. import "google/cloud/aiplatform/v1/featurestore.proto";
  24. import "google/cloud/aiplatform/v1/io.proto";
  25. import "google/cloud/aiplatform/v1/operation.proto";
  26. import "google/longrunning/operations.proto";
  27. import "google/protobuf/field_mask.proto";
  28. import "google/protobuf/timestamp.proto";
  29. option csharp_namespace = "Google.Cloud.AIPlatform.V1";
  30. option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1;aiplatform";
  31. option java_multiple_files = true;
  32. option java_outer_classname = "FeaturestoreServiceProto";
  33. option java_package = "com.google.cloud.aiplatform.v1";
  34. option php_namespace = "Google\\Cloud\\AIPlatform\\V1";
  35. option ruby_package = "Google::Cloud::AIPlatform::V1";
  36. // The service that handles CRUD and List for resources for Featurestore.
  37. service FeaturestoreService {
  38. option (google.api.default_host) = "aiplatform.googleapis.com";
  39. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  40. // Creates a new Featurestore in a given project and location.
  41. rpc CreateFeaturestore(CreateFeaturestoreRequest) returns (google.longrunning.Operation) {
  42. option (google.api.http) = {
  43. post: "/v1/{parent=projects/*/locations/*}/featurestores"
  44. body: "featurestore"
  45. };
  46. option (google.api.method_signature) = "parent,featurestore";
  47. option (google.api.method_signature) = "parent,featurestore,featurestore_id";
  48. option (google.longrunning.operation_info) = {
  49. response_type: "Featurestore"
  50. metadata_type: "CreateFeaturestoreOperationMetadata"
  51. };
  52. }
  53. // Gets details of a single Featurestore.
  54. rpc GetFeaturestore(GetFeaturestoreRequest) returns (Featurestore) {
  55. option (google.api.http) = {
  56. get: "/v1/{name=projects/*/locations/*/featurestores/*}"
  57. };
  58. option (google.api.method_signature) = "name";
  59. }
  60. // Lists Featurestores in a given project and location.
  61. rpc ListFeaturestores(ListFeaturestoresRequest) returns (ListFeaturestoresResponse) {
  62. option (google.api.http) = {
  63. get: "/v1/{parent=projects/*/locations/*}/featurestores"
  64. };
  65. option (google.api.method_signature) = "parent";
  66. }
  67. // Updates the parameters of a single Featurestore.
  68. rpc UpdateFeaturestore(UpdateFeaturestoreRequest) returns (google.longrunning.Operation) {
  69. option (google.api.http) = {
  70. patch: "/v1/{featurestore.name=projects/*/locations/*/featurestores/*}"
  71. body: "featurestore"
  72. };
  73. option (google.api.method_signature) = "featurestore,update_mask";
  74. option (google.longrunning.operation_info) = {
  75. response_type: "Featurestore"
  76. metadata_type: "UpdateFeaturestoreOperationMetadata"
  77. };
  78. }
  79. // Deletes a single Featurestore. The Featurestore must not contain any
  80. // EntityTypes or `force` must be set to true for the request to succeed.
  81. rpc DeleteFeaturestore(DeleteFeaturestoreRequest) returns (google.longrunning.Operation) {
  82. option (google.api.http) = {
  83. delete: "/v1/{name=projects/*/locations/*/featurestores/*}"
  84. };
  85. option (google.api.method_signature) = "name";
  86. option (google.api.method_signature) = "name,force";
  87. option (google.longrunning.operation_info) = {
  88. response_type: "google.protobuf.Empty"
  89. metadata_type: "DeleteOperationMetadata"
  90. };
  91. }
  92. // Creates a new EntityType in a given Featurestore.
  93. rpc CreateEntityType(CreateEntityTypeRequest) returns (google.longrunning.Operation) {
  94. option (google.api.http) = {
  95. post: "/v1/{parent=projects/*/locations/*/featurestores/*}/entityTypes"
  96. body: "entity_type"
  97. };
  98. option (google.api.method_signature) = "parent,entity_type";
  99. option (google.api.method_signature) = "parent,entity_type,entity_type_id";
  100. option (google.longrunning.operation_info) = {
  101. response_type: "EntityType"
  102. metadata_type: "CreateEntityTypeOperationMetadata"
  103. };
  104. }
  105. // Gets details of a single EntityType.
  106. rpc GetEntityType(GetEntityTypeRequest) returns (EntityType) {
  107. option (google.api.http) = {
  108. get: "/v1/{name=projects/*/locations/*/featurestores/*/entityTypes/*}"
  109. };
  110. option (google.api.method_signature) = "name";
  111. }
  112. // Lists EntityTypes in a given Featurestore.
  113. rpc ListEntityTypes(ListEntityTypesRequest) returns (ListEntityTypesResponse) {
  114. option (google.api.http) = {
  115. get: "/v1/{parent=projects/*/locations/*/featurestores/*}/entityTypes"
  116. };
  117. option (google.api.method_signature) = "parent";
  118. }
  119. // Updates the parameters of a single EntityType.
  120. rpc UpdateEntityType(UpdateEntityTypeRequest) returns (EntityType) {
  121. option (google.api.http) = {
  122. patch: "/v1/{entity_type.name=projects/*/locations/*/featurestores/*/entityTypes/*}"
  123. body: "entity_type"
  124. };
  125. option (google.api.method_signature) = "entity_type,update_mask";
  126. }
  127. // Deletes a single EntityType. The EntityType must not have any Features
  128. // or `force` must be set to true for the request to succeed.
  129. rpc DeleteEntityType(DeleteEntityTypeRequest) returns (google.longrunning.Operation) {
  130. option (google.api.http) = {
  131. delete: "/v1/{name=projects/*/locations/*/featurestores/*/entityTypes/*}"
  132. };
  133. option (google.api.method_signature) = "name";
  134. option (google.api.method_signature) = "name,force";
  135. option (google.longrunning.operation_info) = {
  136. response_type: "google.protobuf.Empty"
  137. metadata_type: "DeleteOperationMetadata"
  138. };
  139. }
  140. // Creates a new Feature in a given EntityType.
  141. rpc CreateFeature(CreateFeatureRequest) returns (google.longrunning.Operation) {
  142. option (google.api.http) = {
  143. post: "/v1/{parent=projects/*/locations/*/featurestores/*/entityTypes/*}/features"
  144. body: "feature"
  145. };
  146. option (google.api.method_signature) = "parent,feature";
  147. option (google.api.method_signature) = "parent,feature,feature_id";
  148. option (google.longrunning.operation_info) = {
  149. response_type: "Feature"
  150. metadata_type: "CreateFeatureOperationMetadata"
  151. };
  152. }
  153. // Creates a batch of Features in a given EntityType.
  154. rpc BatchCreateFeatures(BatchCreateFeaturesRequest) returns (google.longrunning.Operation) {
  155. option (google.api.http) = {
  156. post: "/v1/{parent=projects/*/locations/*/featurestores/*/entityTypes/*}/features:batchCreate"
  157. body: "*"
  158. };
  159. option (google.api.method_signature) = "parent,requests";
  160. option (google.longrunning.operation_info) = {
  161. response_type: "BatchCreateFeaturesResponse"
  162. metadata_type: "BatchCreateFeaturesOperationMetadata"
  163. };
  164. }
  165. // Gets details of a single Feature.
  166. rpc GetFeature(GetFeatureRequest) returns (Feature) {
  167. option (google.api.http) = {
  168. get: "/v1/{name=projects/*/locations/*/featurestores/*/entityTypes/*/features/*}"
  169. };
  170. option (google.api.method_signature) = "name";
  171. }
  172. // Lists Features in a given EntityType.
  173. rpc ListFeatures(ListFeaturesRequest) returns (ListFeaturesResponse) {
  174. option (google.api.http) = {
  175. get: "/v1/{parent=projects/*/locations/*/featurestores/*/entityTypes/*}/features"
  176. };
  177. option (google.api.method_signature) = "parent";
  178. }
  179. // Updates the parameters of a single Feature.
  180. rpc UpdateFeature(UpdateFeatureRequest) returns (Feature) {
  181. option (google.api.http) = {
  182. patch: "/v1/{feature.name=projects/*/locations/*/featurestores/*/entityTypes/*/features/*}"
  183. body: "feature"
  184. };
  185. option (google.api.method_signature) = "feature,update_mask";
  186. }
  187. // Deletes a single Feature.
  188. rpc DeleteFeature(DeleteFeatureRequest) returns (google.longrunning.Operation) {
  189. option (google.api.http) = {
  190. delete: "/v1/{name=projects/*/locations/*/featurestores/*/entityTypes/*/features/*}"
  191. };
  192. option (google.api.method_signature) = "name";
  193. option (google.longrunning.operation_info) = {
  194. response_type: "google.protobuf.Empty"
  195. metadata_type: "DeleteOperationMetadata"
  196. };
  197. }
  198. // Imports Feature values into the Featurestore from a source storage.
  199. //
  200. // The progress of the import is tracked by the returned operation. The
  201. // imported features are guaranteed to be visible to subsequent read
  202. // operations after the operation is marked as successfully done.
  203. //
  204. // If an import operation fails, the Feature values returned from
  205. // reads and exports may be inconsistent. If consistency is
  206. // required, the caller must retry the same import request again and wait till
  207. // the new operation returned is marked as successfully done.
  208. //
  209. // There are also scenarios where the caller can cause inconsistency.
  210. //
  211. // - Source data for import contains multiple distinct Feature values for
  212. // the same entity ID and timestamp.
  213. // - Source is modified during an import. This includes adding, updating, or
  214. // removing source data and/or metadata. Examples of updating metadata
  215. // include but are not limited to changing storage location, storage class,
  216. // or retention policy.
  217. // - Online serving cluster is under-provisioned.
  218. rpc ImportFeatureValues(ImportFeatureValuesRequest) returns (google.longrunning.Operation) {
  219. option (google.api.http) = {
  220. post: "/v1/{entity_type=projects/*/locations/*/featurestores/*/entityTypes/*}:importFeatureValues"
  221. body: "*"
  222. };
  223. option (google.api.method_signature) = "entity_type";
  224. option (google.longrunning.operation_info) = {
  225. response_type: "ImportFeatureValuesResponse"
  226. metadata_type: "ImportFeatureValuesOperationMetadata"
  227. };
  228. }
  229. // Batch reads Feature values from a Featurestore.
  230. //
  231. // This API enables batch reading Feature values, where each read
  232. // instance in the batch may read Feature values of entities from one or
  233. // more EntityTypes. Point-in-time correctness is guaranteed for Feature
  234. // values of each read instance as of each instance's read timestamp.
  235. rpc BatchReadFeatureValues(BatchReadFeatureValuesRequest) returns (google.longrunning.Operation) {
  236. option (google.api.http) = {
  237. post: "/v1/{featurestore=projects/*/locations/*/featurestores/*}:batchReadFeatureValues"
  238. body: "*"
  239. };
  240. option (google.api.method_signature) = "featurestore";
  241. option (google.longrunning.operation_info) = {
  242. response_type: "BatchReadFeatureValuesResponse"
  243. metadata_type: "BatchReadFeatureValuesOperationMetadata"
  244. };
  245. }
  246. // Exports Feature values from all the entities of a target EntityType.
  247. rpc ExportFeatureValues(ExportFeatureValuesRequest) returns (google.longrunning.Operation) {
  248. option (google.api.http) = {
  249. post: "/v1/{entity_type=projects/*/locations/*/featurestores/*/entityTypes/*}:exportFeatureValues"
  250. body: "*"
  251. };
  252. option (google.api.method_signature) = "entity_type";
  253. option (google.longrunning.operation_info) = {
  254. response_type: "ExportFeatureValuesResponse"
  255. metadata_type: "ExportFeatureValuesOperationMetadata"
  256. };
  257. }
  258. // Searches Features matching a query in a given project.
  259. rpc SearchFeatures(SearchFeaturesRequest) returns (SearchFeaturesResponse) {
  260. option (google.api.http) = {
  261. get: "/v1/{location=projects/*/locations/*}/featurestores:searchFeatures"
  262. };
  263. option (google.api.method_signature) = "location";
  264. option (google.api.method_signature) = "location,query";
  265. }
  266. }
  267. // Request message for [FeaturestoreService.CreateFeaturestore][google.cloud.aiplatform.v1.FeaturestoreService.CreateFeaturestore].
  268. message CreateFeaturestoreRequest {
  269. // Required. The resource name of the Location to create Featurestores.
  270. // Format:
  271. // `projects/{project}/locations/{location}'`
  272. string parent = 1 [
  273. (google.api.field_behavior) = REQUIRED,
  274. (google.api.resource_reference) = {
  275. child_type: "aiplatform.googleapis.com/Featurestore"
  276. }
  277. ];
  278. // Required. The Featurestore to create.
  279. Featurestore featurestore = 2 [(google.api.field_behavior) = REQUIRED];
  280. // Required. The ID to use for this Featurestore, which will become the final component
  281. // of the Featurestore's resource name.
  282. //
  283. // This value may be up to 60 characters, and valid characters are
  284. // `[a-z0-9_]`. The first character cannot be a number.
  285. //
  286. // The value must be unique within the project and location.
  287. string featurestore_id = 3 [(google.api.field_behavior) = REQUIRED];
  288. }
  289. // Request message for [FeaturestoreService.GetFeaturestore][google.cloud.aiplatform.v1.FeaturestoreService.GetFeaturestore].
  290. message GetFeaturestoreRequest {
  291. // Required. The name of the Featurestore resource.
  292. string name = 1 [
  293. (google.api.field_behavior) = REQUIRED,
  294. (google.api.resource_reference) = {
  295. type: "aiplatform.googleapis.com/Featurestore"
  296. }
  297. ];
  298. }
  299. // Request message for [FeaturestoreService.ListFeaturestores][google.cloud.aiplatform.v1.FeaturestoreService.ListFeaturestores].
  300. message ListFeaturestoresRequest {
  301. // Required. The resource name of the Location to list Featurestores.
  302. // Format:
  303. // `projects/{project}/locations/{location}`
  304. string parent = 1 [
  305. (google.api.field_behavior) = REQUIRED,
  306. (google.api.resource_reference) = {
  307. child_type: "aiplatform.googleapis.com/Featurestore"
  308. }
  309. ];
  310. // Lists the featurestores that match the filter expression. The following
  311. // fields are supported:
  312. //
  313. // * `create_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons.
  314. // Values must be
  315. // in RFC 3339 format.
  316. // * `update_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons.
  317. // Values must be
  318. // in RFC 3339 format.
  319. // * `online_serving_config.fixed_node_count`: Supports `=`, `!=`, `<`, `>`,
  320. // `<=`, and `>=` comparisons.
  321. // * `labels`: Supports key-value equality and key presence.
  322. //
  323. // Examples:
  324. //
  325. // * `create_time > "2020-01-01" OR update_time > "2020-01-01"`
  326. // Featurestores created or updated after 2020-01-01.
  327. // * `labels.env = "prod"`
  328. // Featurestores with label "env" set to "prod".
  329. string filter = 2;
  330. // The maximum number of Featurestores to return. The service may return fewer
  331. // than this value. If unspecified, at most 100 Featurestores will be
  332. // returned. The maximum value is 100; any value greater than 100 will be
  333. // coerced to 100.
  334. int32 page_size = 3;
  335. // A page token, received from a previous
  336. // [FeaturestoreService.ListFeaturestores][google.cloud.aiplatform.v1.FeaturestoreService.ListFeaturestores] call.
  337. // Provide this to retrieve the subsequent page.
  338. //
  339. // When paginating, all other parameters provided to
  340. // [FeaturestoreService.ListFeaturestores][google.cloud.aiplatform.v1.FeaturestoreService.ListFeaturestores] must
  341. // match the call that provided the page token.
  342. string page_token = 4;
  343. // A comma-separated list of fields to order by, sorted in ascending order.
  344. // Use "desc" after a field name for descending.
  345. // Supported Fields:
  346. //
  347. // * `create_time`
  348. // * `update_time`
  349. // * `online_serving_config.fixed_node_count`
  350. string order_by = 5;
  351. // Mask specifying which fields to read.
  352. google.protobuf.FieldMask read_mask = 6;
  353. }
  354. // Response message for [FeaturestoreService.ListFeaturestores][google.cloud.aiplatform.v1.FeaturestoreService.ListFeaturestores].
  355. message ListFeaturestoresResponse {
  356. // The Featurestores matching the request.
  357. repeated Featurestore featurestores = 1;
  358. // A token, which can be sent as [ListFeaturestoresRequest.page_token][google.cloud.aiplatform.v1.ListFeaturestoresRequest.page_token] to
  359. // retrieve the next page.
  360. // If this field is omitted, there are no subsequent pages.
  361. string next_page_token = 2;
  362. }
  363. // Request message for [FeaturestoreService.UpdateFeaturestore][google.cloud.aiplatform.v1.FeaturestoreService.UpdateFeaturestore].
  364. message UpdateFeaturestoreRequest {
  365. // Required. The Featurestore's `name` field is used to identify the Featurestore to be
  366. // updated.
  367. // Format:
  368. // `projects/{project}/locations/{location}/featurestores/{featurestore}`
  369. Featurestore featurestore = 1 [(google.api.field_behavior) = REQUIRED];
  370. // Field mask is used to specify the fields to be overwritten in the
  371. // Featurestore resource by the update.
  372. // The fields specified in the update_mask are relative to the resource, not
  373. // the full request. A field will be overwritten if it is in the mask. If the
  374. // user does not provide a mask then only the non-empty fields present in the
  375. // request will be overwritten. Set the update_mask to `*` to override all
  376. // fields.
  377. //
  378. // Updatable fields:
  379. //
  380. // * `labels`
  381. // * `online_serving_config.fixed_node_count`
  382. // * `online_serving_config.scaling`
  383. google.protobuf.FieldMask update_mask = 2;
  384. }
  385. // Request message for [FeaturestoreService.DeleteFeaturestore][google.cloud.aiplatform.v1.FeaturestoreService.DeleteFeaturestore].
  386. message DeleteFeaturestoreRequest {
  387. // Required. The name of the Featurestore to be deleted.
  388. // Format:
  389. // `projects/{project}/locations/{location}/featurestores/{featurestore}`
  390. string name = 1 [
  391. (google.api.field_behavior) = REQUIRED,
  392. (google.api.resource_reference) = {
  393. type: "aiplatform.googleapis.com/Featurestore"
  394. }
  395. ];
  396. // If set to true, any EntityTypes and Features for this Featurestore will
  397. // also be deleted. (Otherwise, the request will only work if the Featurestore
  398. // has no EntityTypes.)
  399. bool force = 2;
  400. }
  401. // Request message for [FeaturestoreService.ImportFeatureValues][google.cloud.aiplatform.v1.FeaturestoreService.ImportFeatureValues].
  402. message ImportFeatureValuesRequest {
  403. // Defines the Feature value(s) to import.
  404. message FeatureSpec {
  405. // Required. ID of the Feature to import values of. This Feature must exist in the
  406. // target EntityType, or the request will fail.
  407. string id = 1 [(google.api.field_behavior) = REQUIRED];
  408. // Source column to get the Feature values from. If not set, uses the column
  409. // with the same name as the Feature ID.
  410. string source_field = 2;
  411. }
  412. // Details about the source data, including the location of the storage and
  413. // the format.
  414. oneof source {
  415. AvroSource avro_source = 2;
  416. BigQuerySource bigquery_source = 3;
  417. CsvSource csv_source = 4;
  418. }
  419. // Source of Feature timestamp for all Feature values of each entity.
  420. // Timestamps must be millisecond-aligned.
  421. oneof feature_time_source {
  422. // Source column that holds the Feature timestamp for all Feature
  423. // values in each entity.
  424. string feature_time_field = 6;
  425. // Single Feature timestamp for all entities being imported. The
  426. // timestamp must not have higher than millisecond precision.
  427. google.protobuf.Timestamp feature_time = 7;
  428. }
  429. // Required. The resource name of the EntityType grouping the Features for which values
  430. // are being imported. Format:
  431. // `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entityType}`
  432. string entity_type = 1 [
  433. (google.api.field_behavior) = REQUIRED,
  434. (google.api.resource_reference) = {
  435. type: "aiplatform.googleapis.com/EntityType"
  436. }
  437. ];
  438. // Source column that holds entity IDs. If not provided, entity IDs are
  439. // extracted from the column named `entity_id`.
  440. string entity_id_field = 5;
  441. // Required. Specifications defining which Feature values to import from the entity. The
  442. // request fails if no feature_specs are provided, and having multiple
  443. // feature_specs for one Feature is not allowed.
  444. repeated FeatureSpec feature_specs = 8 [(google.api.field_behavior) = REQUIRED];
  445. // If set, data will not be imported for online serving. This
  446. // is typically used for backfilling, where Feature generation timestamps are
  447. // not in the timestamp range needed for online serving.
  448. bool disable_online_serving = 9;
  449. // Specifies the number of workers that are used to write data to the
  450. // Featurestore. Consider the online serving capacity that you require to
  451. // achieve the desired import throughput without interfering with online
  452. // serving. The value must be positive, and less than or equal to 100.
  453. // If not set, defaults to using 1 worker. The low count ensures minimal
  454. // impact on online serving performance.
  455. int32 worker_count = 11;
  456. // If true, API doesn't start ingestion analysis pipeline.
  457. bool disable_ingestion_analysis = 12;
  458. }
  459. // Response message for [FeaturestoreService.ImportFeatureValues][google.cloud.aiplatform.v1.FeaturestoreService.ImportFeatureValues].
  460. message ImportFeatureValuesResponse {
  461. // Number of entities that have been imported by the operation.
  462. int64 imported_entity_count = 1;
  463. // Number of Feature values that have been imported by the operation.
  464. int64 imported_feature_value_count = 2;
  465. // The number of rows in input source that weren't imported due to either
  466. // * Not having any featureValues.
  467. // * Having a null entityId.
  468. // * Having a null timestamp.
  469. // * Not being parsable (applicable for CSV sources).
  470. int64 invalid_row_count = 6;
  471. // The number rows that weren't ingested due to having feature timestamps
  472. // outside the retention boundary.
  473. int64 timestamp_outside_retention_rows_count = 4;
  474. }
  475. // Request message for [FeaturestoreService.BatchReadFeatureValues][google.cloud.aiplatform.v1.FeaturestoreService.BatchReadFeatureValues].
  476. message BatchReadFeatureValuesRequest {
  477. // Describe pass-through fields in read_instance source.
  478. message PassThroughField {
  479. // Required. The name of the field in the CSV header or the name of the column in
  480. // BigQuery table. The naming restriction is the same as [Feature.name][google.cloud.aiplatform.v1.Feature.name].
  481. string field_name = 1 [(google.api.field_behavior) = REQUIRED];
  482. }
  483. // Selects Features of an EntityType to read values of and specifies read
  484. // settings.
  485. message EntityTypeSpec {
  486. // Required. ID of the EntityType to select Features. The EntityType id is the
  487. // [entity_type_id][google.cloud.aiplatform.v1.CreateEntityTypeRequest.entity_type_id] specified
  488. // during EntityType creation.
  489. string entity_type_id = 1 [(google.api.field_behavior) = REQUIRED];
  490. // Required. Selectors choosing which Feature values to read from the EntityType.
  491. FeatureSelector feature_selector = 2 [(google.api.field_behavior) = REQUIRED];
  492. // Per-Feature settings for the batch read.
  493. repeated DestinationFeatureSetting settings = 3;
  494. }
  495. oneof read_option {
  496. // Each read instance consists of exactly one read timestamp and one or more
  497. // entity IDs identifying entities of the corresponding EntityTypes whose
  498. // Features are requested.
  499. //
  500. // Each output instance contains Feature values of requested entities
  501. // concatenated together as of the read time.
  502. //
  503. // An example read instance may be `foo_entity_id, bar_entity_id,
  504. // 2020-01-01T10:00:00.123Z`.
  505. //
  506. // An example output instance may be `foo_entity_id, bar_entity_id,
  507. // 2020-01-01T10:00:00.123Z, foo_entity_feature1_value,
  508. // bar_entity_feature2_value`.
  509. //
  510. // Timestamp in each read instance must be millisecond-aligned.
  511. //
  512. // `csv_read_instances` are read instances stored in a plain-text CSV file.
  513. // The header should be:
  514. // [ENTITY_TYPE_ID1], [ENTITY_TYPE_ID2], ..., timestamp
  515. //
  516. // The columns can be in any order.
  517. //
  518. // Values in the timestamp column must use the RFC 3339 format, e.g.
  519. // `2012-07-30T10:43:17.123Z`.
  520. CsvSource csv_read_instances = 3;
  521. // Similar to csv_read_instances, but from BigQuery source.
  522. BigQuerySource bigquery_read_instances = 5;
  523. }
  524. // Required. The resource name of the Featurestore from which to query Feature values.
  525. // Format:
  526. // `projects/{project}/locations/{location}/featurestores/{featurestore}`
  527. string featurestore = 1 [
  528. (google.api.field_behavior) = REQUIRED,
  529. (google.api.resource_reference) = {
  530. type: "aiplatform.googleapis.com/Featurestore"
  531. }
  532. ];
  533. // Required. Specifies output location and format.
  534. FeatureValueDestination destination = 4 [(google.api.field_behavior) = REQUIRED];
  535. // When not empty, the specified fields in the *_read_instances source will be
  536. // joined as-is in the output, in addition to those fields from the
  537. // Featurestore Entity.
  538. //
  539. // For BigQuery source, the type of the pass-through values will be
  540. // automatically inferred. For CSV source, the pass-through values will be
  541. // passed as opaque bytes.
  542. repeated PassThroughField pass_through_fields = 8;
  543. // Required. Specifies EntityType grouping Features to read values of and settings.
  544. // Each EntityType referenced in
  545. // [BatchReadFeatureValuesRequest.entity_type_specs] must have a column
  546. // specifying entity IDs in the EntityType in
  547. // [BatchReadFeatureValuesRequest.request][] .
  548. repeated EntityTypeSpec entity_type_specs = 7 [(google.api.field_behavior) = REQUIRED];
  549. // Optional. Excludes Feature values with feature generation timestamp before this
  550. // timestamp. If not set, retrieve oldest values kept in Feature Store.
  551. // Timestamp, if present, must not have higher than millisecond precision.
  552. google.protobuf.Timestamp start_time = 11 [(google.api.field_behavior) = OPTIONAL];
  553. }
  554. // Request message for [FeaturestoreService.ExportFeatureValues][google.cloud.aiplatform.v1.FeaturestoreService.ExportFeatureValues].
  555. message ExportFeatureValuesRequest {
  556. // Describes exporting the latest Feature values of all entities of the
  557. // EntityType between [start_time, snapshot_time].
  558. message SnapshotExport {
  559. // Exports Feature values as of this timestamp. If not set,
  560. // retrieve values as of now. Timestamp, if present, must not have higher
  561. // than millisecond precision.
  562. google.protobuf.Timestamp snapshot_time = 1;
  563. // Excludes Feature values with feature generation timestamp before this
  564. // timestamp. If not set, retrieve oldest values kept in Feature Store.
  565. // Timestamp, if present, must not have higher than millisecond precision.
  566. google.protobuf.Timestamp start_time = 2;
  567. }
  568. // Describes exporting all historical Feature values of all entities of the
  569. // EntityType between [start_time, end_time].
  570. message FullExport {
  571. // Excludes Feature values with feature generation timestamp before this
  572. // timestamp. If not set, retrieve oldest values kept in Feature Store.
  573. // Timestamp, if present, must not have higher than millisecond precision.
  574. google.protobuf.Timestamp start_time = 2;
  575. // Exports Feature values as of this timestamp. If not set,
  576. // retrieve values as of now. Timestamp, if present, must not have higher
  577. // than millisecond precision.
  578. google.protobuf.Timestamp end_time = 1;
  579. }
  580. // Required. The mode in which Feature values are exported.
  581. oneof mode {
  582. // Exports the latest Feature values of all entities of the EntityType
  583. // within a time range.
  584. SnapshotExport snapshot_export = 3;
  585. // Exports all historical values of all entities of the EntityType within a
  586. // time range
  587. FullExport full_export = 7;
  588. }
  589. // Required. The resource name of the EntityType from which to export Feature values.
  590. // Format:
  591. // `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
  592. string entity_type = 1 [
  593. (google.api.field_behavior) = REQUIRED,
  594. (google.api.resource_reference) = {
  595. type: "aiplatform.googleapis.com/EntityType"
  596. }
  597. ];
  598. // Required. Specifies destination location and format.
  599. FeatureValueDestination destination = 4 [(google.api.field_behavior) = REQUIRED];
  600. // Required. Selects Features to export values of.
  601. FeatureSelector feature_selector = 5 [(google.api.field_behavior) = REQUIRED];
  602. // Per-Feature export settings.
  603. repeated DestinationFeatureSetting settings = 6;
  604. }
  605. message DestinationFeatureSetting {
  606. // Required. The ID of the Feature to apply the setting to.
  607. string feature_id = 1 [(google.api.field_behavior) = REQUIRED];
  608. // Specify the field name in the export destination. If not specified,
  609. // Feature ID is used.
  610. string destination_field = 2;
  611. }
  612. // A destination location for Feature values and format.
  613. message FeatureValueDestination {
  614. oneof destination {
  615. // Output in BigQuery format.
  616. // [BigQueryDestination.output_uri][google.cloud.aiplatform.v1.BigQueryDestination.output_uri] in
  617. // [FeatureValueDestination.bigquery_destination][google.cloud.aiplatform.v1.FeatureValueDestination.bigquery_destination] must refer to a table.
  618. BigQueryDestination bigquery_destination = 1;
  619. // Output in TFRecord format.
  620. //
  621. // Below are the mapping from Feature value type
  622. // in Featurestore to Feature value type in TFRecord:
  623. //
  624. // Value type in Featurestore | Value type in TFRecord
  625. // DOUBLE, DOUBLE_ARRAY | FLOAT_LIST
  626. // INT64, INT64_ARRAY | INT64_LIST
  627. // STRING, STRING_ARRAY, BYTES | BYTES_LIST
  628. // true -> byte_string("true"), false -> byte_string("false")
  629. // BOOL, BOOL_ARRAY (true, false) | BYTES_LIST
  630. TFRecordDestination tfrecord_destination = 2;
  631. // Output in CSV format. Array Feature value types are not allowed in CSV
  632. // format.
  633. CsvDestination csv_destination = 3;
  634. }
  635. }
  636. // Response message for [FeaturestoreService.ExportFeatureValues][google.cloud.aiplatform.v1.FeaturestoreService.ExportFeatureValues].
  637. message ExportFeatureValuesResponse {
  638. }
  639. // Response message for [FeaturestoreService.BatchReadFeatureValues][google.cloud.aiplatform.v1.FeaturestoreService.BatchReadFeatureValues].
  640. message BatchReadFeatureValuesResponse {
  641. }
  642. // Request message for [FeaturestoreService.CreateEntityType][google.cloud.aiplatform.v1.FeaturestoreService.CreateEntityType].
  643. message CreateEntityTypeRequest {
  644. // Required. The resource name of the Featurestore to create EntityTypes.
  645. // Format:
  646. // `projects/{project}/locations/{location}/featurestores/{featurestore}`
  647. string parent = 1 [
  648. (google.api.field_behavior) = REQUIRED,
  649. (google.api.resource_reference) = {
  650. type: "aiplatform.googleapis.com/Featurestore"
  651. }
  652. ];
  653. // The EntityType to create.
  654. EntityType entity_type = 2;
  655. // Required. The ID to use for the EntityType, which will become the final component of
  656. // the EntityType's resource name.
  657. //
  658. // This value may be up to 60 characters, and valid characters are
  659. // `[a-z0-9_]`. The first character cannot be a number.
  660. //
  661. // The value must be unique within a featurestore.
  662. string entity_type_id = 3 [(google.api.field_behavior) = REQUIRED];
  663. }
  664. // Request message for [FeaturestoreService.GetEntityType][google.cloud.aiplatform.v1.FeaturestoreService.GetEntityType].
  665. message GetEntityTypeRequest {
  666. // Required. The name of the EntityType resource.
  667. // Format:
  668. // `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
  669. string name = 1 [
  670. (google.api.field_behavior) = REQUIRED,
  671. (google.api.resource_reference) = {
  672. type: "aiplatform.googleapis.com/EntityType"
  673. }
  674. ];
  675. }
  676. // Request message for [FeaturestoreService.ListEntityTypes][google.cloud.aiplatform.v1.FeaturestoreService.ListEntityTypes].
  677. message ListEntityTypesRequest {
  678. // Required. The resource name of the Featurestore to list EntityTypes.
  679. // Format:
  680. // `projects/{project}/locations/{location}/featurestores/{featurestore}`
  681. string parent = 1 [
  682. (google.api.field_behavior) = REQUIRED,
  683. (google.api.resource_reference) = {
  684. child_type: "aiplatform.googleapis.com/EntityType"
  685. }
  686. ];
  687. // Lists the EntityTypes that match the filter expression. The following
  688. // filters are supported:
  689. //
  690. // * `create_time`: Supports `=`, `!=`, `<`, `>`, `>=`, and `<=` comparisons.
  691. // Values must be in RFC 3339 format.
  692. // * `update_time`: Supports `=`, `!=`, `<`, `>`, `>=`, and `<=` comparisons.
  693. // Values must be in RFC 3339 format.
  694. // * `labels`: Supports key-value equality as well as key presence.
  695. //
  696. // Examples:
  697. //
  698. // * `create_time > \"2020-01-31T15:30:00.000000Z\" OR
  699. // update_time > \"2020-01-31T15:30:00.000000Z\"` --> EntityTypes created
  700. // or updated after 2020-01-31T15:30:00.000000Z.
  701. // * `labels.active = yes AND labels.env = prod` --> EntityTypes having both
  702. // (active: yes) and (env: prod) labels.
  703. // * `labels.env: *` --> Any EntityType which has a label with 'env' as the
  704. // key.
  705. string filter = 2;
  706. // The maximum number of EntityTypes to return. The service may return fewer
  707. // than this value. If unspecified, at most 1000 EntityTypes will be returned.
  708. // The maximum value is 1000; any value greater than 1000 will be coerced to
  709. // 1000.
  710. int32 page_size = 3;
  711. // A page token, received from a previous
  712. // [FeaturestoreService.ListEntityTypes][google.cloud.aiplatform.v1.FeaturestoreService.ListEntityTypes] call.
  713. // Provide this to retrieve the subsequent page.
  714. //
  715. // When paginating, all other parameters provided to
  716. // [FeaturestoreService.ListEntityTypes][google.cloud.aiplatform.v1.FeaturestoreService.ListEntityTypes] must
  717. // match the call that provided the page token.
  718. string page_token = 4;
  719. // A comma-separated list of fields to order by, sorted in ascending order.
  720. // Use "desc" after a field name for descending.
  721. //
  722. // Supported fields:
  723. //
  724. // * `entity_type_id`
  725. // * `create_time`
  726. // * `update_time`
  727. string order_by = 5;
  728. // Mask specifying which fields to read.
  729. google.protobuf.FieldMask read_mask = 6;
  730. }
  731. // Response message for [FeaturestoreService.ListEntityTypes][google.cloud.aiplatform.v1.FeaturestoreService.ListEntityTypes].
  732. message ListEntityTypesResponse {
  733. // The EntityTypes matching the request.
  734. repeated EntityType entity_types = 1;
  735. // A token, which can be sent as [ListEntityTypesRequest.page_token][google.cloud.aiplatform.v1.ListEntityTypesRequest.page_token] to
  736. // retrieve the next page.
  737. // If this field is omitted, there are no subsequent pages.
  738. string next_page_token = 2;
  739. }
  740. // Request message for [FeaturestoreService.UpdateEntityType][google.cloud.aiplatform.v1.FeaturestoreService.UpdateEntityType].
  741. message UpdateEntityTypeRequest {
  742. // Required. The EntityType's `name` field is used to identify the EntityType to be
  743. // updated.
  744. // Format:
  745. // `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
  746. EntityType entity_type = 1 [(google.api.field_behavior) = REQUIRED];
  747. // Field mask is used to specify the fields to be overwritten in the
  748. // EntityType resource by the update.
  749. // The fields specified in the update_mask are relative to the resource, not
  750. // the full request. A field will be overwritten if it is in the mask. If the
  751. // user does not provide a mask then only the non-empty fields present in the
  752. // request will be overwritten. Set the update_mask to `*` to override all
  753. // fields.
  754. //
  755. // Updatable fields:
  756. //
  757. // * `description`
  758. // * `labels`
  759. // * `monitoring_config.snapshot_analysis.disabled`
  760. // * `monitoring_config.snapshot_analysis.monitoring_interval_days`
  761. // * `monitoring_config.snapshot_analysis.staleness_days`
  762. // * `monitoring_config.import_features_analysis.state`
  763. // * `monitoring_config.import_features_analysis.anomaly_detection_baseline`
  764. // * `monitoring_config.numerical_threshold_config.value`
  765. // * `monitoring_config.categorical_threshold_config.value`
  766. google.protobuf.FieldMask update_mask = 2;
  767. }
  768. // Request message for [FeaturestoreService.DeleteEntityTypes][].
  769. message DeleteEntityTypeRequest {
  770. // Required. The name of the EntityType to be deleted.
  771. // Format:
  772. // `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
  773. string name = 1 [
  774. (google.api.field_behavior) = REQUIRED,
  775. (google.api.resource_reference) = {
  776. type: "aiplatform.googleapis.com/EntityType"
  777. }
  778. ];
  779. // If set to true, any Features for this EntityType will also be deleted.
  780. // (Otherwise, the request will only work if the EntityType has no Features.)
  781. bool force = 2;
  782. }
  783. // Request message for [FeaturestoreService.CreateFeature][google.cloud.aiplatform.v1.FeaturestoreService.CreateFeature].
  784. message CreateFeatureRequest {
  785. // Required. The resource name of the EntityType to create a Feature.
  786. // Format:
  787. // `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
  788. string parent = 1 [
  789. (google.api.field_behavior) = REQUIRED,
  790. (google.api.resource_reference) = {
  791. type: "aiplatform.googleapis.com/EntityType"
  792. }
  793. ];
  794. // Required. The Feature to create.
  795. Feature feature = 2 [(google.api.field_behavior) = REQUIRED];
  796. // Required. The ID to use for the Feature, which will become the final component of
  797. // the Feature's resource name.
  798. //
  799. // This value may be up to 128 characters, and valid characters are
  800. // `[a-z0-9_]`. The first character cannot be a number.
  801. //
  802. // The value must be unique within an EntityType.
  803. string feature_id = 3 [(google.api.field_behavior) = REQUIRED];
  804. }
  805. // Request message for [FeaturestoreService.BatchCreateFeatures][google.cloud.aiplatform.v1.FeaturestoreService.BatchCreateFeatures].
  806. message BatchCreateFeaturesRequest {
  807. // Required. The resource name of the EntityType to create the batch of Features under.
  808. // Format:
  809. // `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
  810. string parent = 1 [
  811. (google.api.field_behavior) = REQUIRED,
  812. (google.api.resource_reference) = {
  813. type: "aiplatform.googleapis.com/EntityType"
  814. }
  815. ];
  816. // Required. The request message specifying the Features to create. All Features must be
  817. // created under the same parent EntityType. The `parent` field in each child
  818. // request message can be omitted. If `parent` is set in a child request, then
  819. // the value must match the `parent` value in this request message.
  820. repeated CreateFeatureRequest requests = 2 [(google.api.field_behavior) = REQUIRED];
  821. }
  822. // Response message for [FeaturestoreService.BatchCreateFeatures][google.cloud.aiplatform.v1.FeaturestoreService.BatchCreateFeatures].
  823. message BatchCreateFeaturesResponse {
  824. // The Features created.
  825. repeated Feature features = 1;
  826. }
  827. // Request message for [FeaturestoreService.GetFeature][google.cloud.aiplatform.v1.FeaturestoreService.GetFeature].
  828. message GetFeatureRequest {
  829. // Required. The name of the Feature resource.
  830. // Format:
  831. // `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
  832. string name = 1 [
  833. (google.api.field_behavior) = REQUIRED,
  834. (google.api.resource_reference) = {
  835. type: "aiplatform.googleapis.com/Feature"
  836. }
  837. ];
  838. }
  839. // Request message for [FeaturestoreService.ListFeatures][google.cloud.aiplatform.v1.FeaturestoreService.ListFeatures].
  840. message ListFeaturesRequest {
  841. // Required. The resource name of the Location to list Features.
  842. // Format:
  843. // `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
  844. string parent = 1 [
  845. (google.api.field_behavior) = REQUIRED,
  846. (google.api.resource_reference) = {
  847. child_type: "aiplatform.googleapis.com/Feature"
  848. }
  849. ];
  850. // Lists the Features that match the filter expression. The following
  851. // filters are supported:
  852. //
  853. // * `value_type`: Supports = and != comparisons.
  854. // * `create_time`: Supports =, !=, <, >, >=, and <= comparisons. Values must
  855. // be in RFC 3339 format.
  856. // * `update_time`: Supports =, !=, <, >, >=, and <= comparisons. Values must
  857. // be in RFC 3339 format.
  858. // * `labels`: Supports key-value equality as well as key presence.
  859. //
  860. // Examples:
  861. //
  862. // * `value_type = DOUBLE` --> Features whose type is DOUBLE.
  863. // * `create_time > \"2020-01-31T15:30:00.000000Z\" OR
  864. // update_time > \"2020-01-31T15:30:00.000000Z\"` --> EntityTypes created
  865. // or updated after 2020-01-31T15:30:00.000000Z.
  866. // * `labels.active = yes AND labels.env = prod` --> Features having both
  867. // (active: yes) and (env: prod) labels.
  868. // * `labels.env: *` --> Any Feature which has a label with 'env' as the
  869. // key.
  870. string filter = 2;
  871. // The maximum number of Features to return. The service may return fewer
  872. // than this value. If unspecified, at most 1000 Features will be returned.
  873. // The maximum value is 1000; any value greater than 1000 will be coerced to
  874. // 1000.
  875. int32 page_size = 3;
  876. // A page token, received from a previous
  877. // [FeaturestoreService.ListFeatures][google.cloud.aiplatform.v1.FeaturestoreService.ListFeatures] call.
  878. // Provide this to retrieve the subsequent page.
  879. //
  880. // When paginating, all other parameters provided to
  881. // [FeaturestoreService.ListFeatures][google.cloud.aiplatform.v1.FeaturestoreService.ListFeatures] must
  882. // match the call that provided the page token.
  883. string page_token = 4;
  884. // A comma-separated list of fields to order by, sorted in ascending order.
  885. // Use "desc" after a field name for descending.
  886. // Supported fields:
  887. //
  888. // * `feature_id`
  889. // * `value_type`
  890. // * `create_time`
  891. // * `update_time`
  892. string order_by = 5;
  893. // Mask specifying which fields to read.
  894. google.protobuf.FieldMask read_mask = 6;
  895. // If set, return the most recent [ListFeaturesRequest.latest_stats_count][google.cloud.aiplatform.v1.ListFeaturesRequest.latest_stats_count]
  896. // of stats for each Feature in response. Valid value is [0, 10]. If number of
  897. // stats exists < [ListFeaturesRequest.latest_stats_count][google.cloud.aiplatform.v1.ListFeaturesRequest.latest_stats_count], return all
  898. // existing stats.
  899. int32 latest_stats_count = 7;
  900. }
  901. // Response message for [FeaturestoreService.ListFeatures][google.cloud.aiplatform.v1.FeaturestoreService.ListFeatures].
  902. message ListFeaturesResponse {
  903. // The Features matching the request.
  904. repeated Feature features = 1;
  905. // A token, which can be sent as [ListFeaturesRequest.page_token][google.cloud.aiplatform.v1.ListFeaturesRequest.page_token] to
  906. // retrieve the next page.
  907. // If this field is omitted, there are no subsequent pages.
  908. string next_page_token = 2;
  909. }
  910. // Request message for [FeaturestoreService.SearchFeatures][google.cloud.aiplatform.v1.FeaturestoreService.SearchFeatures].
  911. message SearchFeaturesRequest {
  912. // Required. The resource name of the Location to search Features.
  913. // Format:
  914. // `projects/{project}/locations/{location}`
  915. string location = 1 [
  916. (google.api.field_behavior) = REQUIRED,
  917. (google.api.resource_reference) = {
  918. type: "locations.googleapis.com/Location"
  919. }
  920. ];
  921. // Query string that is a conjunction of field-restricted queries and/or
  922. // field-restricted filters. Field-restricted queries and filters can be
  923. // combined using `AND` to form a conjunction.
  924. //
  925. // A field query is in the form FIELD:QUERY. This implicitly checks if QUERY
  926. // exists as a substring within Feature's FIELD. The QUERY
  927. // and the FIELD are converted to a sequence of words (i.e. tokens) for
  928. // comparison. This is done by:
  929. //
  930. // * Removing leading/trailing whitespace and tokenizing the search value.
  931. // Characters that are not one of alphanumeric `[a-zA-Z0-9]`, underscore
  932. // `_`, or asterisk `*` are treated as delimiters for tokens. `*` is treated
  933. // as a wildcard that matches characters within a token.
  934. // * Ignoring case.
  935. // * Prepending an asterisk to the first and appending an asterisk to the
  936. // last token in QUERY.
  937. //
  938. // A QUERY must be either a singular token or a phrase. A phrase is one or
  939. // multiple words enclosed in double quotation marks ("). With phrases, the
  940. // order of the words is important. Words in the phrase must be matching in
  941. // order and consecutively.
  942. //
  943. // Supported FIELDs for field-restricted queries:
  944. //
  945. // * `feature_id`
  946. // * `description`
  947. // * `entity_type_id`
  948. //
  949. // Examples:
  950. //
  951. // * `feature_id: foo` --> Matches a Feature with ID containing the substring
  952. // `foo` (eg. `foo`, `foofeature`, `barfoo`).
  953. // * `feature_id: foo*feature` --> Matches a Feature with ID containing the
  954. // substring `foo*feature` (eg. `foobarfeature`).
  955. // * `feature_id: foo AND description: bar` --> Matches a Feature with ID
  956. // containing the substring `foo` and description containing the substring
  957. // `bar`.
  958. //
  959. //
  960. // Besides field queries, the following exact-match filters are
  961. // supported. The exact-match filters do not support wildcards. Unlike
  962. // field-restricted queries, exact-match filters are case-sensitive.
  963. //
  964. // * `feature_id`: Supports = comparisons.
  965. // * `description`: Supports = comparisons. Multi-token filters should be
  966. // enclosed in quotes.
  967. // * `entity_type_id`: Supports = comparisons.
  968. // * `value_type`: Supports = and != comparisons.
  969. // * `labels`: Supports key-value equality as well as key presence.
  970. // * `featurestore_id`: Supports = comparisons.
  971. //
  972. // Examples:
  973. // * `description = "foo bar"` --> Any Feature with description exactly equal
  974. // to `foo bar`
  975. // * `value_type = DOUBLE` --> Features whose type is DOUBLE.
  976. // * `labels.active = yes AND labels.env = prod` --> Features having both
  977. // (active: yes) and (env: prod) labels.
  978. // * `labels.env: *` --> Any Feature which has a label with `env` as the
  979. // key.
  980. string query = 3;
  981. // The maximum number of Features to return. The service may return fewer
  982. // than this value. If unspecified, at most 100 Features will be returned.
  983. // The maximum value is 100; any value greater than 100 will be coerced to
  984. // 100.
  985. int32 page_size = 4;
  986. // A page token, received from a previous
  987. // [FeaturestoreService.SearchFeatures][google.cloud.aiplatform.v1.FeaturestoreService.SearchFeatures] call.
  988. // Provide this to retrieve the subsequent page.
  989. //
  990. // When paginating, all other parameters provided to
  991. // [FeaturestoreService.SearchFeatures][google.cloud.aiplatform.v1.FeaturestoreService.SearchFeatures], except `page_size`, must
  992. // match the call that provided the page token.
  993. string page_token = 5;
  994. }
  995. // Response message for [FeaturestoreService.SearchFeatures][google.cloud.aiplatform.v1.FeaturestoreService.SearchFeatures].
  996. message SearchFeaturesResponse {
  997. // The Features matching the request.
  998. //
  999. // Fields returned:
  1000. //
  1001. // * `name`
  1002. // * `description`
  1003. // * `labels`
  1004. // * `create_time`
  1005. // * `update_time`
  1006. repeated Feature features = 1;
  1007. // A token, which can be sent as [SearchFeaturesRequest.page_token][google.cloud.aiplatform.v1.SearchFeaturesRequest.page_token] to
  1008. // retrieve the next page.
  1009. // If this field is omitted, there are no subsequent pages.
  1010. string next_page_token = 2;
  1011. }
  1012. // Request message for [FeaturestoreService.UpdateFeature][google.cloud.aiplatform.v1.FeaturestoreService.UpdateFeature].
  1013. message UpdateFeatureRequest {
  1014. // Required. The Feature's `name` field is used to identify the Feature to be
  1015. // updated.
  1016. // Format:
  1017. // `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}`
  1018. Feature feature = 1 [(google.api.field_behavior) = REQUIRED];
  1019. // Field mask is used to specify the fields to be overwritten in the
  1020. // Features resource by the update.
  1021. // The fields specified in the update_mask are relative to the resource, not
  1022. // the full request. A field will be overwritten if it is in the mask. If the
  1023. // user does not provide a mask then only the non-empty fields present in the
  1024. // request will be overwritten. Set the update_mask to `*` to override all
  1025. // fields.
  1026. //
  1027. // Updatable fields:
  1028. //
  1029. // * `description`
  1030. // * `labels`
  1031. // * `disable_monitoring`
  1032. google.protobuf.FieldMask update_mask = 2;
  1033. }
  1034. // Request message for [FeaturestoreService.DeleteFeature][google.cloud.aiplatform.v1.FeaturestoreService.DeleteFeature].
  1035. message DeleteFeatureRequest {
  1036. // Required. The name of the Features to be deleted.
  1037. // Format:
  1038. // `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}`
  1039. string name = 1 [
  1040. (google.api.field_behavior) = REQUIRED,
  1041. (google.api.resource_reference) = {
  1042. type: "aiplatform.googleapis.com/Feature"
  1043. }
  1044. ];
  1045. }
  1046. // Details of operations that perform create Featurestore.
  1047. message CreateFeaturestoreOperationMetadata {
  1048. // Operation metadata for Featurestore.
  1049. GenericOperationMetadata generic_metadata = 1;
  1050. }
  1051. // Details of operations that perform update Featurestore.
  1052. message UpdateFeaturestoreOperationMetadata {
  1053. // Operation metadata for Featurestore.
  1054. GenericOperationMetadata generic_metadata = 1;
  1055. }
  1056. // Details of operations that perform import Feature values.
  1057. message ImportFeatureValuesOperationMetadata {
  1058. // Operation metadata for Featurestore import Feature values.
  1059. GenericOperationMetadata generic_metadata = 1;
  1060. // Number of entities that have been imported by the operation.
  1061. int64 imported_entity_count = 2;
  1062. // Number of Feature values that have been imported by the operation.
  1063. int64 imported_feature_value_count = 3;
  1064. // The number of rows in input source that weren't imported due to either
  1065. // * Not having any featureValues.
  1066. // * Having a null entityId.
  1067. // * Having a null timestamp.
  1068. // * Not being parsable (applicable for CSV sources).
  1069. int64 invalid_row_count = 6;
  1070. // The number rows that weren't ingested due to having timestamps outside the
  1071. // retention boundary.
  1072. int64 timestamp_outside_retention_rows_count = 7;
  1073. }
  1074. // Details of operations that exports Features values.
  1075. message ExportFeatureValuesOperationMetadata {
  1076. // Operation metadata for Featurestore export Feature values.
  1077. GenericOperationMetadata generic_metadata = 1;
  1078. }
  1079. // Details of operations that batch reads Feature values.
  1080. message BatchReadFeatureValuesOperationMetadata {
  1081. // Operation metadata for Featurestore batch read Features values.
  1082. GenericOperationMetadata generic_metadata = 1;
  1083. }
  1084. // Details of operations that perform create EntityType.
  1085. message CreateEntityTypeOperationMetadata {
  1086. // Operation metadata for EntityType.
  1087. GenericOperationMetadata generic_metadata = 1;
  1088. }
  1089. // Details of operations that perform create Feature.
  1090. message CreateFeatureOperationMetadata {
  1091. // Operation metadata for Feature.
  1092. GenericOperationMetadata generic_metadata = 1;
  1093. }
  1094. // Details of operations that perform batch create Features.
  1095. message BatchCreateFeaturesOperationMetadata {
  1096. // Operation metadata for Feature.
  1097. GenericOperationMetadata generic_metadata = 1;
  1098. }