Class FeatureOnlineStoreAdminServiceClient (2.23.0-rc)

The service that handles CRUD and List for resources for FeatureOnlineStore.

Equality

Instances of this class created via copy-construction or copy-assignment always compare equal. Instances created with equal std::shared_ptr<*Connection> objects compare equal. Objects that compare equal share the same underlying resources.

Performance

Creating a new instance of this class is a relatively expensive operation, new objects establish new connections to the service. In contrast, copy-construction, move-construction, and the corresponding assignment operations are relatively efficient as the copies share all underlying resources.

Thread Safety

Concurrent access to different instances of this class, even if they compare equal, is guaranteed to work. Two or more threads operating on the same instance of this class is not guaranteed to work. Since copy-construction and move-construction is a relatively efficient operation, consider using such a copy when using this class from multiple threads.

Constructors

FeatureOnlineStoreAdminServiceClient(FeatureOnlineStoreAdminServiceClient const &)

Copy and move support

Parameter
NameDescription
FeatureOnlineStoreAdminServiceClient const &

FeatureOnlineStoreAdminServiceClient(FeatureOnlineStoreAdminServiceClient &&)

Copy and move support

Parameter
NameDescription
FeatureOnlineStoreAdminServiceClient &&

FeatureOnlineStoreAdminServiceClient(std::shared_ptr< FeatureOnlineStoreAdminServiceConnection >, Options)

Parameters
NameDescription
connection std::shared_ptr< FeatureOnlineStoreAdminServiceConnection >
opts Options

Operators

operator=(FeatureOnlineStoreAdminServiceClient const &)

Copy and move support

Parameter
NameDescription
FeatureOnlineStoreAdminServiceClient const &
Returns
TypeDescription
FeatureOnlineStoreAdminServiceClient &

operator=(FeatureOnlineStoreAdminServiceClient &&)

Copy and move support

Parameter
NameDescription
FeatureOnlineStoreAdminServiceClient &&
Returns
TypeDescription
FeatureOnlineStoreAdminServiceClient &

Functions

CreateFeatureOnlineStore(std::string const &, google::cloud::aiplatform::v1::FeatureOnlineStore const &, std::string const &, Options)

Creates a new FeatureOnlineStore in a given project and location.

Parameters
NameDescription
parent std::string const &

Required. The resource name of the Location to create FeatureOnlineStores. Format: projects/{project}/locations/{location}

feature_online_store google::cloud::aiplatform::v1::FeatureOnlineStore const &

Required. The FeatureOnlineStore to create.

feature_online_store_id std::string const &

Required. The ID to use for this FeatureOnlineStore, which will become the final component of the FeatureOnlineStore's resource name.
This value may be up to 60 characters, and valid characters are [a-z0-9_]. The first character cannot be a number.
The value must be unique within the project and location.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::aiplatform::v1::FeatureOnlineStore > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.aiplatform.v1.FeatureOnlineStore proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

CreateFeatureOnlineStore(google::cloud::aiplatform::v1::CreateFeatureOnlineStoreRequest const &, Options)

Creates a new FeatureOnlineStore in a given project and location.

Parameters
NameDescription
request google::cloud::aiplatform::v1::CreateFeatureOnlineStoreRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.CreateFeatureOnlineStoreRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::aiplatform::v1::FeatureOnlineStore > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.aiplatform.v1.FeatureOnlineStore proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

GetFeatureOnlineStore(std::string const &, Options)

Gets details of a single FeatureOnlineStore.

Parameters
NameDescription
name std::string const &

Required. The name of the FeatureOnlineStore resource.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::aiplatform::v1::FeatureOnlineStore >

the result of the RPC. The response message type (google.cloud.aiplatform.v1.FeatureOnlineStore) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetFeatureOnlineStore(google::cloud::aiplatform::v1::GetFeatureOnlineStoreRequest const &, Options)

Gets details of a single FeatureOnlineStore.

Parameters
NameDescription
request google::cloud::aiplatform::v1::GetFeatureOnlineStoreRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.GetFeatureOnlineStoreRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::aiplatform::v1::FeatureOnlineStore >

the result of the RPC. The response message type (google.cloud.aiplatform.v1.FeatureOnlineStore) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

ListFeatureOnlineStores(std::string const &, Options)

Lists FeatureOnlineStores in a given project and location.

Parameters
NameDescription
parent std::string const &

Required. The resource name of the Location to list FeatureOnlineStores. Format: projects/{project}/locations/{location}

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::aiplatform::v1::FeatureOnlineStore >

a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.aiplatform.v1.FeatureOnlineStore, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListFeatureOnlineStores(google::cloud::aiplatform::v1::ListFeatureOnlineStoresRequest, Options)

Lists FeatureOnlineStores in a given project and location.

Parameters
NameDescription
request google::cloud::aiplatform::v1::ListFeatureOnlineStoresRequest

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.ListFeatureOnlineStoresRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::aiplatform::v1::FeatureOnlineStore >

a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.aiplatform.v1.FeatureOnlineStore, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

UpdateFeatureOnlineStore(google::cloud::aiplatform::v1::FeatureOnlineStore const &, google::protobuf::FieldMask const &, Options)

Updates the parameters of a single FeatureOnlineStore.

Parameters
NameDescription
feature_online_store google::cloud::aiplatform::v1::FeatureOnlineStore const &

Required. The FeatureOnlineStore's name field is used to identify the FeatureOnlineStore to be updated. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}

update_mask google::protobuf::FieldMask const &

Field mask is used to specify the fields to be overwritten in the FeatureOnlineStore resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to * to override all fields.
Updatable fields:

  • big_query_source
  • bigtable
  • labels
  • sync_config
opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::aiplatform::v1::FeatureOnlineStore > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.aiplatform.v1.FeatureOnlineStore proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

UpdateFeatureOnlineStore(google::cloud::aiplatform::v1::UpdateFeatureOnlineStoreRequest const &, Options)

Updates the parameters of a single FeatureOnlineStore.

Parameters
NameDescription
request google::cloud::aiplatform::v1::UpdateFeatureOnlineStoreRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.UpdateFeatureOnlineStoreRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::aiplatform::v1::FeatureOnlineStore > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.aiplatform.v1.FeatureOnlineStore proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

DeleteFeatureOnlineStore(std::string const &, bool, Options)

Deletes a single FeatureOnlineStore.

The FeatureOnlineStore must not contain any FeatureViews.

Parameters
NameDescription
name std::string const &

Required. The name of the FeatureOnlineStore to be deleted. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}

force bool

If set to true, any FeatureViews and Features for this FeatureOnlineStore will also be deleted. (Otherwise, the request will only work if the FeatureOnlineStore has no FeatureViews.)

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::aiplatform::v1::DeleteOperationMetadata > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.aiplatform.v1.DeleteOperationMetadata proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

DeleteFeatureOnlineStore(google::cloud::aiplatform::v1::DeleteFeatureOnlineStoreRequest const &, Options)

Deletes a single FeatureOnlineStore.

The FeatureOnlineStore must not contain any FeatureViews.

Parameters
NameDescription
request google::cloud::aiplatform::v1::DeleteFeatureOnlineStoreRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.DeleteFeatureOnlineStoreRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::aiplatform::v1::DeleteOperationMetadata > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.aiplatform.v1.DeleteOperationMetadata proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

CreateFeatureView(std::string const &, google::cloud::aiplatform::v1::FeatureView const &, std::string const &, Options)

Creates a new FeatureView in a given FeatureOnlineStore.

Parameters
NameDescription
parent std::string const &

Required. The resource name of the FeatureOnlineStore to create FeatureViews. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}

feature_view google::cloud::aiplatform::v1::FeatureView const &

Required. The FeatureView to create.

feature_view_id std::string const &

Required. The ID to use for the FeatureView, which will become the final component of the FeatureView's resource name.
This value may be up to 60 characters, and valid characters are [a-z0-9_]. The first character cannot be a number.
The value must be unique within a FeatureOnlineStore.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::aiplatform::v1::FeatureView > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.aiplatform.v1.FeatureView proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

CreateFeatureView(google::cloud::aiplatform::v1::CreateFeatureViewRequest const &, Options)

Creates a new FeatureView in a given FeatureOnlineStore.

Parameters
NameDescription
request google::cloud::aiplatform::v1::CreateFeatureViewRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.CreateFeatureViewRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::aiplatform::v1::FeatureView > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.aiplatform.v1.FeatureView proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

GetFeatureView(std::string const &, Options)

Gets details of a single FeatureView.

Parameters
NameDescription
name std::string const &

Required. The name of the FeatureView resource. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::aiplatform::v1::FeatureView >

the result of the RPC. The response message type (google.cloud.aiplatform.v1.FeatureView) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetFeatureView(google::cloud::aiplatform::v1::GetFeatureViewRequest const &, Options)

Gets details of a single FeatureView.

Parameters
NameDescription
request google::cloud::aiplatform::v1::GetFeatureViewRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.GetFeatureViewRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::aiplatform::v1::FeatureView >

the result of the RPC. The response message type (google.cloud.aiplatform.v1.FeatureView) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

ListFeatureViews(std::string const &, Options)

Lists FeatureViews in a given FeatureOnlineStore.

Parameters
NameDescription
parent std::string const &

Required. The resource name of the FeatureOnlineStore to list FeatureViews. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::aiplatform::v1::FeatureView >

a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.aiplatform.v1.FeatureView, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListFeatureViews(google::cloud::aiplatform::v1::ListFeatureViewsRequest, Options)

Lists FeatureViews in a given FeatureOnlineStore.

Parameters
NameDescription
request google::cloud::aiplatform::v1::ListFeatureViewsRequest

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.ListFeatureViewsRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::aiplatform::v1::FeatureView >

a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.aiplatform.v1.FeatureView, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

UpdateFeatureView(google::cloud::aiplatform::v1::FeatureView const &, google::protobuf::FieldMask const &, Options)

Updates the parameters of a single FeatureView.

Parameters
NameDescription
feature_view google::cloud::aiplatform::v1::FeatureView const &

Required. The FeatureView's name field is used to identify the FeatureView to be updated. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}

update_mask google::protobuf::FieldMask const &

Field mask is used to specify the fields to be overwritten in the FeatureView resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to * to override all fields.
Updatable fields:

  • labels
  • serviceAgentType
opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::aiplatform::v1::FeatureView > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.aiplatform.v1.FeatureView proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

UpdateFeatureView(google::cloud::aiplatform::v1::UpdateFeatureViewRequest const &, Options)

Updates the parameters of a single FeatureView.

Parameters
NameDescription
request google::cloud::aiplatform::v1::UpdateFeatureViewRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.UpdateFeatureViewRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::aiplatform::v1::FeatureView > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.aiplatform.v1.FeatureView proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

DeleteFeatureView(std::string const &, Options)

Deletes a single FeatureView.

Parameters
NameDescription
name std::string const &

Required. The name of the FeatureView to be deleted. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::aiplatform::v1::DeleteOperationMetadata > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.aiplatform.v1.DeleteOperationMetadata proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

DeleteFeatureView(google::cloud::aiplatform::v1::DeleteFeatureViewRequest const &, Options)

Deletes a single FeatureView.

Parameters
NameDescription
request google::cloud::aiplatform::v1::DeleteFeatureViewRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.DeleteFeatureViewRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::aiplatform::v1::DeleteOperationMetadata > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.aiplatform.v1.DeleteOperationMetadata proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

SyncFeatureView(std::string const &, Options)

Triggers on-demand sync for the FeatureView.

Parameters
NameDescription
feature_view std::string const &

Required. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::aiplatform::v1::SyncFeatureViewResponse >

the result of the RPC. The response message type (google.cloud.aiplatform.v1.SyncFeatureViewResponse) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

SyncFeatureView(google::cloud::aiplatform::v1::SyncFeatureViewRequest const &, Options)

Triggers on-demand sync for the FeatureView.

Parameters
NameDescription
request google::cloud::aiplatform::v1::SyncFeatureViewRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.SyncFeatureViewRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::aiplatform::v1::SyncFeatureViewResponse >

the result of the RPC. The response message type (google.cloud.aiplatform.v1.SyncFeatureViewResponse) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetFeatureViewSync(std::string const &, Options)

Gets details of a single FeatureViewSync.

Parameters
NameDescription
name std::string const &

Required. The name of the FeatureViewSync resource. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync}

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::aiplatform::v1::FeatureViewSync >

the result of the RPC. The response message type (google.cloud.aiplatform.v1.FeatureViewSync) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetFeatureViewSync(google::cloud::aiplatform::v1::GetFeatureViewSyncRequest const &, Options)

Gets details of a single FeatureViewSync.

Parameters
NameDescription
request google::cloud::aiplatform::v1::GetFeatureViewSyncRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.GetFeatureViewSyncRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::aiplatform::v1::FeatureViewSync >

the result of the RPC. The response message type (google.cloud.aiplatform.v1.FeatureViewSync) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

ListFeatureViewSyncs(std::string const &, Options)

Lists FeatureViewSyncs in a given FeatureView.

Parameters
NameDescription
parent std::string const &

Required. The resource name of the FeatureView to list FeatureViewSyncs. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::aiplatform::v1::FeatureViewSync >

a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.aiplatform.v1.FeatureViewSync, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListFeatureViewSyncs(google::cloud::aiplatform::v1::ListFeatureViewSyncsRequest, Options)

Lists FeatureViewSyncs in a given FeatureView.

Parameters
NameDescription
request google::cloud::aiplatform::v1::ListFeatureViewSyncsRequest

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.aiplatform.v1.ListFeatureViewSyncsRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::aiplatform::v1::FeatureViewSync >

a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.aiplatform.v1.FeatureViewSync, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.