Class FeaturestoreServiceAsyncClient (0.8.0)

FeaturestoreServiceAsyncClient(*, credentials: google.auth.credentials.Credentials = None, transport: Union[str, google.cloud.aiplatform_v1beta1.services.featurestore_service.transports.base.FeaturestoreServiceTransport] = 'grpc_asyncio', client_options: <module 'google.api_core.client_options' from '/workspace/python-aiplatform/.nox/docfx/lib/python3.8/site-packages/google/api_core/client_options.py'> = None, client_info: google.api_core.gapic_v1.client_info.ClientInfo = <google.api_core.gapic_v1.client_info.ClientInfo object>)

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

Inheritance

builtins.object > FeaturestoreServiceAsyncClient

Properties

transport

Return the transport used by the client instance.

Returns
TypeDescription
FeaturestoreServiceTransportThe transport used by the client instance.

Methods

FeaturestoreServiceAsyncClient

FeaturestoreServiceAsyncClient(*, credentials: google.auth.credentials.Credentials = None, transport: Union[str, google.cloud.aiplatform_v1beta1.services.featurestore_service.transports.base.FeaturestoreServiceTransport] = 'grpc_asyncio', client_options: <module 'google.api_core.client_options' from '/workspace/python-aiplatform/.nox/docfx/lib/python3.8/site-packages/google/api_core/client_options.py'> = None, client_info: google.api_core.gapic_v1.client_info.ClientInfo = <google.api_core.gapic_v1.client_info.ClientInfo object>)

Instantiate the featurestore service client.

Parameters
NameDescription
credentials Optional[google.auth.credentials.Credentials]

The authorization credentials to attach to requests. These credentials identify the application to the service; if none are specified, the client will attempt to ascertain the credentials from the environment.

transport Union[str, `.FeaturestoreServiceTransport`]

The transport to use. If set to None, a transport is chosen automatically.

client_options ClientOptions

Custom options for the client. It won't take effect if a transport instance is provided. (1) The api_endpoint property can be used to override the default endpoint provided by the client. GOOGLE_API_USE_MTLS_ENDPOINT environment variable can also be used to override the endpoint: "always" (always use the default mTLS endpoint), "never" (always use the default regular endpoint) and "auto" (auto switch to the default mTLS endpoint if client certificate is present, this is the default value). However, the api_endpoint property takes precedence if provided. (2) If GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is "true", then the client_cert_source property can be used to provide client certificate for mutual TLS transport. If not provided, the default SSL client certificate will be used if present. If GOOGLE_API_USE_CLIENT_CERTIFICATE is "false" or not set, no client certificate will be used.

Exceptions
TypeDescription
google.auth.exceptions.MutualTlsChannelErrorIf mutual TLS transport creation failed for any reason.

batch_create_features

batch_create_features(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.BatchCreateFeaturesRequest] = None, *, parent: Optional[str] = None, requests: Optional[Sequence[google.cloud.aiplatform_v1beta1.types.featurestore_service.CreateFeatureRequest]] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Creates a batch of Features in a given EntityType.

Parameters
NameDescription
request BatchCreateFeaturesRequest

The request object. Request message for FeaturestoreService.BatchCreateFeatures.

parent `str`

Required. The resource name of the EntityType to create the batch of Features under. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type} This corresponds to the parent field on the request instance; if request is provided, this should not be set.

requests :class:`Sequence[google.cloud.aiplatform_v1beta1.types.CreateFeatureRequest]`

Required. The request message specifying the Features to create. All Features must be created under the same parent EntityType. The parent field in each child request message can be omitted. If parent is set in a child request, then the value must match the parent value in this request message. This corresponds to the requests field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.api_core.operation_async.AsyncOperationAn object representing a long-running operation. The result type for the operation will be BatchCreateFeaturesResponse Response message for FeaturestoreService.BatchCreateFeatures.

batch_read_feature_values

batch_read_feature_values(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.BatchReadFeatureValuesRequest] = None, *, featurestore: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Batch reads Feature values from a Featurestore. This API enables batch reading Feature values, where each read instance in the batch may read Feature values of entities from one or more EntityTypes. Point-in-time correctness is guaranteed for Feature values of each read instance as of each instance's read timestamp.

Parameters
NameDescription
request BatchReadFeatureValuesRequest

The request object. Request message for FeaturestoreService.BatchReadFeatureValues. (- Next Id: 6 -)

featurestore `str`

Required. The resource name of the Featurestore from which to query Feature values. Format: projects/{project}/locations/{location}/featurestores/{featurestore} This corresponds to the featurestore field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.api_core.operation_async.AsyncOperationAn object representing a long-running operation. The result type for the operation will be BatchReadFeatureValuesResponse Response message for FeaturestoreService.BatchReadFeatureValues.

common_billing_account_path

common_billing_account_path(billing_account: str)

Return a fully-qualified billing_account string.

common_folder_path

common_folder_path(folder: str)

Return a fully-qualified folder string.

common_location_path

common_location_path(project: str, location: str)

Return a fully-qualified location string.

common_organization_path

common_organization_path(organization: str)

Return a fully-qualified organization string.

common_project_path

common_project_path(project: str)

Return a fully-qualified project string.

create_entity_type

create_entity_type(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.CreateEntityTypeRequest] = None, *, parent: Optional[str] = None, entity_type: Optional[google.cloud.aiplatform_v1beta1.types.entity_type.EntityType] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Creates a new EntityType in a given Featurestore.

Parameters
NameDescription
request CreateEntityTypeRequest

The request object. Request message for FeaturestoreService.CreateEntityType.

parent `str`

Required. The resource name of the Featurestore to create EntityTypes. Format: projects/{project}/locations/{location}/featurestores/{featurestore} This corresponds to the parent field on the request instance; if request is provided, this should not be set.

entity_type EntityType

The EntityType to create. This corresponds to the entity_type field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.api_core.operation_async.AsyncOperationAn object representing a long-running operation. The result type for the operation will be EntityType An entity type is a type of object in a system that needs to be modeled and have stored information about. For example, driver is an entity type, and driver0 is an instance of an entity type driver.

create_feature

create_feature(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.CreateFeatureRequest] = None, *, parent: Optional[str] = None, feature: Optional[google.cloud.aiplatform_v1beta1.types.feature.Feature] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Creates a new Feature in a given EntityType.

Parameters
NameDescription
request CreateFeatureRequest

The request object. Request message for FeaturestoreService.CreateFeature.

parent `str`

Required. The resource name of the EntityType to create a Feature. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type} This corresponds to the parent field on the request instance; if request is provided, this should not be set.

feature Feature

Required. The Feature to create. This corresponds to the feature field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.api_core.operation_async.AsyncOperationAn object representing a long-running operation. The result type for the operation will be Feature Feature Metadata information that describes an attribute of an entity type. For example, apple is an entity type, and color is a feature that describes apple.

create_featurestore

create_featurestore(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.CreateFeaturestoreRequest] = None, *, parent: Optional[str] = None, featurestore: Optional[google.cloud.aiplatform_v1beta1.types.featurestore.Featurestore] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Creates a new Featurestore in a given project and location.

Parameters
NameDescription
request CreateFeaturestoreRequest

The request object. Request message for FeaturestoreService.CreateFeaturestore.

parent `str`

Required. The resource name of the Location to create Featurestores. Format: projects/{project}/locations/{location}' This corresponds to the parent field on the request instance; if request is provided, this should not be set.

featurestore Featurestore

Required. The Featurestore to create. This corresponds to the featurestore field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.api_core.operation_async.AsyncOperationAn object representing a long-running operation. The result type for the operation will be Featurestore Featurestore configuration information on how the Featurestore is configured.

delete_entity_type

delete_entity_type(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.DeleteEntityTypeRequest] = None, *, name: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Deletes a single EntityType. The EntityType must not have any Features or force must be set to true for the request to succeed.

Parameters
NameDescription
request DeleteEntityTypeRequest

The request object. Request message for [FeaturestoreService.DeleteEntityTypes][].

name `str`

Required. The name of the EntityType to be deleted. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type} This corresponds to the name field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.api_core.operation_async.AsyncOperationAn object representing a long-running operation. The result type for the operation will be `google.protobuf.empty_pb2.Empty` A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for Empty is empty JSON object {}.

delete_feature

delete_feature(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.DeleteFeatureRequest] = None, *, name: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Deletes a single Feature.

Parameters
NameDescription
request DeleteFeatureRequest

The request object. Request message for FeaturestoreService.DeleteFeature.

name `str`

Required. The name of the Features to be deleted. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature} This corresponds to the name field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.api_core.operation_async.AsyncOperationAn object representing a long-running operation. The result type for the operation will be `google.protobuf.empty_pb2.Empty` A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for Empty is empty JSON object {}.

delete_featurestore

delete_featurestore(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.DeleteFeaturestoreRequest] = None, *, name: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Deletes a single Featurestore. The Featurestore must not contain any EntityTypes or force must be set to true for the request to succeed.

Parameters
NameDescription
request DeleteFeaturestoreRequest

The request object. Request message for FeaturestoreService.DeleteFeaturestore.

name `str`

Required. The name of the Featurestore to be deleted. Format: projects/{project}/locations/{location}/featurestores/{featurestore} This corresponds to the name field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.api_core.operation_async.AsyncOperationAn object representing a long-running operation. The result type for the operation will be `google.protobuf.empty_pb2.Empty` A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for Empty is empty JSON object {}.

entity_type_path

entity_type_path(project: str, location: str, featurestore: str, entity_type: str)

Return a fully-qualified entity_type string.

export_feature_values

export_feature_values(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.ExportFeatureValuesRequest] = None, *, entity_type: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Exports Feature values from all the entities of a target EntityType.

Parameters
NameDescription
request ExportFeatureValuesRequest

The request object. Request message for FeaturestoreService.ExportFeatureValues.

entity_type `str`

Required. The resource name of the EntityType from which to export Feature values. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type} This corresponds to the entity_type field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.api_core.operation_async.AsyncOperationAn object representing a long-running operation. The result type for the operation will be ExportFeatureValuesResponse Response message for FeaturestoreService.ExportFeatureValues.

feature_path

feature_path(
    project: str, location: str, featurestore: str, entity_type: str, feature: str
)

Return a fully-qualified feature string.

featurestore_path

featurestore_path(project: str, location: str, featurestore: str)

Return a fully-qualified featurestore string.

from_service_account_file

from_service_account_file(filename: str, *args, **kwargs)

Creates an instance of this client using the provided credentials file.

Parameter
NameDescription
filename str

The path to the service account private key json file.

Returns
TypeDescription
FeaturestoreServiceAsyncClientThe constructed client.

from_service_account_info

from_service_account_info(info: dict, *args, **kwargs)

Creates an instance of this client using the provided credentials info.

Parameter
NameDescription
info dict

The service account private key info.

Returns
TypeDescription
FeaturestoreServiceAsyncClientThe constructed client.

from_service_account_json

from_service_account_json(filename: str, *args, **kwargs)

Creates an instance of this client using the provided credentials file.

Parameter
NameDescription
filename str

The path to the service account private key json file.

Returns
TypeDescription
FeaturestoreServiceAsyncClientThe constructed client.

get_entity_type

get_entity_type(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.GetEntityTypeRequest] = None, *, name: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Gets details of a single EntityType.

Parameters
NameDescription
request GetEntityTypeRequest

The request object. Request message for FeaturestoreService.GetEntityType.

name `str`

Required. The name of the EntityType resource. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type} This corresponds to the name field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.cloud.aiplatform_v1beta1.types.EntityTypeAn entity type is a type of object in a system that needs to be modeled and have stored information about. For example, driver is an entity type, and driver0 is an instance of an entity type driver.

get_feature

get_feature(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.GetFeatureRequest] = None, *, name: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Gets details of a single Feature.

Parameters
NameDescription
request GetFeatureRequest

The request object. Request message for FeaturestoreService.GetFeature.

name `str`

Required. The name of the Feature resource. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type} This corresponds to the name field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.cloud.aiplatform_v1beta1.types.FeatureFeature Metadata information that describes an attribute of an entity type. For example, apple is an entity type, and color is a feature that describes apple.

get_featurestore

get_featurestore(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.GetFeaturestoreRequest] = None, *, name: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Gets details of a single Featurestore.

Parameters
NameDescription
request GetFeaturestoreRequest

The request object. Request message for FeaturestoreService.GetFeaturestore.

name `str`

Required. The name of the Featurestore resource. This corresponds to the name field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.cloud.aiplatform_v1beta1.types.FeaturestoreFeaturestore configuration information on how the Featurestore is configured.

get_transport_class

get_transport_class()

Return an appropriate transport class.

import_feature_values

import_feature_values(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.ImportFeatureValuesRequest] = None, *, entity_type: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Imports Feature values into the Featurestore from a source storage. The progress of the import is tracked by the returned operation. The imported features are guaranteed to be visible to subsequent read operations after the operation is marked as successfully done. If an import operation fails, the Feature values returned from reads and exports may be inconsistent. If consistency is required, the caller must retry the same import request again and wait till the new operation returned is marked as successfully done. There are also scenarios where the caller can cause inconsistency.

  • Source data for import contains multiple distinct Feature values for the same entity ID and timestamp.
  • Source is modified during an import. This includes adding, updating, or removing source data and/or metadata. Examples of updating metadata include but are not limited to changing storage location, storage class, or retention policy.
  • Online serving cluster is under-provisioned.
Parameters
NameDescription
request ImportFeatureValuesRequest

The request object. Request message for FeaturestoreService.ImportFeatureValues.

entity_type `str`

Required. The resource name of the EntityType grouping the Features for which values are being imported. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entityType} This corresponds to the entity_type field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.api_core.operation_async.AsyncOperationAn object representing a long-running operation. The result type for the operation will be ImportFeatureValuesResponse Response message for FeaturestoreService.ImportFeatureValues.

list_entity_types

list_entity_types(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.ListEntityTypesRequest] = None, *, parent: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Lists EntityTypes in a given Featurestore.

Parameters
NameDescription
request ListEntityTypesRequest

The request object. Request message for FeaturestoreService.ListEntityTypes.

parent `str`

Required. The resource name of the Featurestore to list EntityTypes. Format: projects/{project}/locations/{location}/featurestores/{featurestore} This corresponds to the parent field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.cloud.aiplatform_v1beta1.services.featurestore_service.pagers.ListEntityTypesAsyncPagerResponse message for FeaturestoreService.ListEntityTypes. Iterating over this object will yield results and resolve additional pages automatically.

list_features

list_features(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.ListFeaturesRequest] = None, *, parent: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Lists Features in a given EntityType.

Parameters
NameDescription
request ListFeaturesRequest

The request object. Request message for FeaturestoreService.ListFeatures.

parent `str`

Required. The resource name of the Location to list Features. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type} This corresponds to the parent field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.cloud.aiplatform_v1beta1.services.featurestore_service.pagers.ListFeaturesAsyncPagerResponse message for FeaturestoreService.ListFeatures. Iterating over this object will yield results and resolve additional pages automatically.

list_featurestores

list_featurestores(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.ListFeaturestoresRequest] = None, *, parent: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Lists Featurestores in a given project and location.

Parameters
NameDescription
request ListFeaturestoresRequest

The request object. Request message for FeaturestoreService.ListFeaturestores.

parent `str`

Required. The resource name of the Location to list Featurestores. Format: projects/{project}/locations/{location} This corresponds to the parent field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.cloud.aiplatform_v1beta1.services.featurestore_service.pagers.ListFeaturestoresAsyncPagerResponse message for FeaturestoreService.ListFeaturestores. Iterating over this object will yield results and resolve additional pages automatically.

parse_common_billing_account_path

parse_common_billing_account_path(path: str)

Parse a billing_account path into its component segments.

parse_common_folder_path

parse_common_folder_path(path: str)

Parse a folder path into its component segments.

parse_common_location_path

parse_common_location_path(path: str)

Parse a location path into its component segments.

parse_common_organization_path

parse_common_organization_path(path: str)

Parse a organization path into its component segments.

parse_common_project_path

parse_common_project_path(path: str)

Parse a project path into its component segments.

parse_entity_type_path

parse_entity_type_path(path: str)

Parse a entity_type path into its component segments.

parse_feature_path

parse_feature_path(path: str)

Parse a feature path into its component segments.

parse_featurestore_path

parse_featurestore_path(path: str)

Parse a featurestore path into its component segments.

search_features

search_features(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.SearchFeaturesRequest] = None, *, location: Optional[str] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Searches Features matching a query in a given project.

Parameters
NameDescription
request SearchFeaturesRequest

The request object. Request message for FeaturestoreService.SearchFeatures.

location `str`

Required. The resource name of the Location to search Features. Format: projects/{project}/locations/{location} This corresponds to the location field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.cloud.aiplatform_v1beta1.services.featurestore_service.pagers.SearchFeaturesAsyncPagerResponse message for FeaturestoreService.SearchFeatures. Iterating over this object will yield results and resolve additional pages automatically.

update_entity_type

update_entity_type(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.UpdateEntityTypeRequest] = None, *, entity_type: Optional[google.cloud.aiplatform_v1beta1.types.entity_type.EntityType] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Updates the parameters of a single EntityType.

Parameters
NameDescription
request UpdateEntityTypeRequest

The request object. Request message for FeaturestoreService.UpdateEntityType.

entity_type EntityType

Required. The EntityType's name field is used to identify the EntityType to be updated. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type} This corresponds to the entity_type field on the request instance; if request is provided, this should not be set.

update_mask `google.protobuf.field_mask_pb2.FieldMask`

Field mask is used to specify the fields to be overwritten in the EntityType 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: - description - labels - monitoring_config.snapshot_analysis.disabled - monitoring_config.snapshot_analysis.monitoring_interval This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.cloud.aiplatform_v1beta1.types.EntityTypeAn entity type is a type of object in a system that needs to be modeled and have stored information about. For example, driver is an entity type, and driver0 is an instance of an entity type driver.

update_feature

update_feature(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.UpdateFeatureRequest] = None, *, feature: Optional[google.cloud.aiplatform_v1beta1.types.feature.Feature] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Updates the parameters of a single Feature.

Parameters
NameDescription
request UpdateFeatureRequest

The request object. Request message for FeaturestoreService.UpdateFeature.

feature Feature

Required. The Feature's name field is used to identify the Feature to be updated. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature} This corresponds to the feature field on the request instance; if request is provided, this should not be set.

update_mask `google.protobuf.field_mask_pb2.FieldMask`

Field mask is used to specify the fields to be overwritten in the Features 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: - description - labels - monitoring_config.snapshot_analysis.disabled - monitoring_config.snapshot_analysis.monitoring_interval This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.cloud.aiplatform_v1beta1.types.FeatureFeature Metadata information that describes an attribute of an entity type. For example, apple is an entity type, and color is a feature that describes apple.

update_featurestore

update_featurestore(request: Optional[google.cloud.aiplatform_v1beta1.types.featurestore_service.UpdateFeaturestoreRequest] = None, *, featurestore: Optional[google.cloud.aiplatform_v1beta1.types.featurestore.Featurestore] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: google.api_core.retry.Retry = <object object>, timeout: Optional[float] = None, metadata: Sequence[Tuple[str, str]] = ())

Updates the parameters of a single Featurestore.

Parameters
NameDescription
request UpdateFeaturestoreRequest

The request object. Request message for FeaturestoreService.UpdateFeaturestore.

featurestore Featurestore

Required. The Featurestore's name field is used to identify the Featurestore to be updated. Format: projects/{project}/locations/{location}/featurestores/{featurestore} This corresponds to the featurestore field on the request instance; if request is provided, this should not be set.

update_mask `google.protobuf.field_mask_pb2.FieldMask`

Field mask is used to specify the fields to be overwritten in the Featurestore 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: - display_name - labels - online_serving_config.fixed_node_count - retention_policy.online_storage_ttl_days This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

retry google.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeout float

The timeout for this request.

metadata Sequence[Tuple[str, str]]

Strings which should be sent along with the request as metadata.

Returns
TypeDescription
google.api_core.operation_async.AsyncOperationAn object representing a long-running operation. The result type for the operation will be Featurestore Featurestore configuration information on how the Featurestore is configured.