feature_view_syncs
Creates, updates, deletes, gets or lists a feature_view_syncs
resource.
Overview
Name | feature_view_syncs |
Type | Resource |
Id | google.aiplatform.feature_view_syncs |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Identifier. Name of the FeatureViewSync. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync} |
createTime | string (google-datetime) | Output only. Time when this FeatureViewSync is created. Creation of a FeatureViewSync means that the job is pending / waiting for sufficient resources but may not have started the actual data transfer yet. |
finalStatus | object | Output only. Final status of the FeatureViewSync. (id: GoogleRpcStatus) |
runTime | object | Output only. Time when this FeatureViewSync is finished. (id: GoogleTypeInterval) |
satisfiesPzi | boolean | Output only. Reserved for future use. |
satisfiesPzs | boolean | Output only. Reserved for future use. |
syncSummary | object | Output only. Summary of the sync job. (id: GoogleCloudAiplatformV1FeatureViewSyncSyncSummary) |
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Identifier. Name of the FeatureViewSync. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync} |
createTime | string (google-datetime) | Output only. Time when this FeatureViewSync is created. Creation of a FeatureViewSync means that the job is pending / waiting for sufficient resources but may not have started the actual data transfer yet. |
finalStatus | object | Output only. Final status of the FeatureViewSync. (id: GoogleRpcStatus) |
runTime | object | Output only. Time when this FeatureViewSync is finished. (id: GoogleTypeInterval) |
satisfiesPzi | boolean | Output only. Reserved for future use. |
satisfiesPzs | boolean | Output only. Reserved for future use. |
syncSummary | object | Output only. Summary of the sync job. (id: GoogleCloudAiplatformV1FeatureViewSyncSyncSummary) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | projectsId , locationsId , featureOnlineStoresId , featureViewsId , featureViewSyncsId | Gets details of a single FeatureViewSync. | |
list | select | projectsId , locationsId , featureOnlineStoresId , featureViewsId | filter , pageSize , pageToken , orderBy | Lists FeatureViewSyncs in a given FeatureView. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
featureOnlineStoresId | string | |
featureViewSyncsId | string | |
featureViewsId | string | |
locationsId | string | |
projectsId | string | |
filter | string | |
orderBy | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- get
- list
Gets details of a single FeatureViewSync.
SELECT
name,
createTime,
finalStatus,
runTime,
satisfiesPzi,
satisfiesPzs,
syncSummary
FROM google.aiplatform.feature_view_syncs
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND featureOnlineStoresId = '{{ featureOnlineStoresId }}' -- required
AND featureViewsId = '{{ featureViewsId }}' -- required
AND featureViewSyncsId = '{{ featureViewSyncsId }}' -- required;
Lists FeatureViewSyncs in a given FeatureView.
SELECT
name,
createTime,
finalStatus,
runTime,
satisfiesPzi,
satisfiesPzs,
syncSummary
FROM google.aiplatform.feature_view_syncs
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND featureOnlineStoresId = '{{ featureOnlineStoresId }}' -- required
AND featureViewsId = '{{ featureViewsId }}' -- required
AND filter = '{{ filter }}'
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND orderBy = '{{ orderBy }}';