Cloud AI Platform v1 API - Class FeatureOnlineStoreServiceClient (2.27.0)

public abstract class FeatureOnlineStoreServiceClient

Reference documentation and code samples for the Cloud AI Platform v1 API class FeatureOnlineStoreServiceClient.

FeatureOnlineStoreService client wrapper, for convenient use.

Inheritance

object > FeatureOnlineStoreServiceClient

Namespace

Google.Cloud.AIPlatform.V1

Assembly

Google.Cloud.AIPlatform.V1.dll

Remarks

A service for fetching feature values from the online store.

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

The default endpoint for the FeatureOnlineStoreService service, which is a host of "aiplatform.googleapis.com" and a port of 443.

Property Value
TypeDescription
string

DefaultScopes

public static IReadOnlyList<string> DefaultScopes { get; }

The default FeatureOnlineStoreService scopes.

Property Value
TypeDescription
IReadOnlyListstring
Remarks

The default FeatureOnlineStoreService scopes are:

GrpcClient

public virtual FeatureOnlineStoreService.FeatureOnlineStoreServiceClient GrpcClient { get; }

The underlying gRPC FeatureOnlineStoreService client

Property Value
TypeDescription
FeatureOnlineStoreServiceFeatureOnlineStoreServiceClient

IAMPolicyClient

public virtual IAMPolicyClient IAMPolicyClient { get; }

The IAMPolicyClient associated with this client.

Property Value
TypeDescription
IAMPolicyClient

LocationsClient

public virtual LocationsClient LocationsClient { get; }

The LocationsClient associated with this client.

Property Value
TypeDescription
LocationsClient

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
TypeDescription
ServiceMetadata

Methods

Create()

public static FeatureOnlineStoreServiceClient Create()

Synchronously creates a FeatureOnlineStoreServiceClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use FeatureOnlineStoreServiceClientBuilder.

Returns
TypeDescription
FeatureOnlineStoreServiceClient

The created FeatureOnlineStoreServiceClient.

CreateAsync(CancellationToken)

public static Task<FeatureOnlineStoreServiceClient> CreateAsync(CancellationToken cancellationToken = default)

Asynchronously creates a FeatureOnlineStoreServiceClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use FeatureOnlineStoreServiceClientBuilder.

Parameter
NameDescription
cancellationTokenCancellationToken

The CancellationToken to use while creating the client.

Returns
TypeDescription
TaskFeatureOnlineStoreServiceClient

The task representing the created FeatureOnlineStoreServiceClient.

FetchFeatureValues(FeatureViewName, FeatureViewDataKey, CallSettings)

public virtual FetchFeatureValuesResponse FetchFeatureValues(FeatureViewName featureView, FeatureViewDataKey dataKey, CallSettings callSettings = null)

Fetch feature values under a FeatureView.

Parameters
NameDescription
featureViewFeatureViewName

Required. FeatureView resource format projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}

dataKeyFeatureViewDataKey

Optional. The request key to fetch feature values for.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
FetchFeatureValuesResponse

The RPC response.

Example
// Create client
FeatureOnlineStoreServiceClient featureOnlineStoreServiceClient = FeatureOnlineStoreServiceClient.Create();
// Initialize request argument(s)
FeatureViewName featureView = FeatureViewName.FromProjectLocationFeatureOnlineStoreFeatureView("[PROJECT]", "[LOCATION]", "[FEATURE_ONLINE_STORE]", "[FEATURE_VIEW]");
FeatureViewDataKey dataKey = new FeatureViewDataKey();
// Make the request
FetchFeatureValuesResponse response = featureOnlineStoreServiceClient.FetchFeatureValues(featureView, dataKey);

FetchFeatureValues(FetchFeatureValuesRequest, CallSettings)

public virtual FetchFeatureValuesResponse FetchFeatureValues(FetchFeatureValuesRequest request, CallSettings callSettings = null)

Fetch feature values under a FeatureView.

Parameters
NameDescription
requestFetchFeatureValuesRequest

The request object containing all of the parameters for the API call.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
FetchFeatureValuesResponse

The RPC response.

Example
// Create client
FeatureOnlineStoreServiceClient featureOnlineStoreServiceClient = FeatureOnlineStoreServiceClient.Create();
// Initialize request argument(s)
FetchFeatureValuesRequest request = new FetchFeatureValuesRequest
{
    FeatureViewAsFeatureViewName = FeatureViewName.FromProjectLocationFeatureOnlineStoreFeatureView("[PROJECT]", "[LOCATION]", "[FEATURE_ONLINE_STORE]", "[FEATURE_VIEW]"),
    DataKey = new FeatureViewDataKey(),
    DataFormat = FeatureViewDataFormat.Unspecified,
};
// Make the request
FetchFeatureValuesResponse response = featureOnlineStoreServiceClient.FetchFeatureValues(request);

FetchFeatureValues(string, FeatureViewDataKey, CallSettings)

public virtual FetchFeatureValuesResponse FetchFeatureValues(string featureView, FeatureViewDataKey dataKey, CallSettings callSettings = null)

Fetch feature values under a FeatureView.

Parameters
NameDescription
featureViewstring

Required. FeatureView resource format projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}

dataKeyFeatureViewDataKey

Optional. The request key to fetch feature values for.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
FetchFeatureValuesResponse

The RPC response.

Example
// Create client
FeatureOnlineStoreServiceClient featureOnlineStoreServiceClient = FeatureOnlineStoreServiceClient.Create();
// Initialize request argument(s)
string featureView = "projects/[PROJECT]/locations/[LOCATION]/featureOnlineStores/[FEATURE_ONLINE_STORE]/featureViews/[FEATURE_VIEW]";
FeatureViewDataKey dataKey = new FeatureViewDataKey();
// Make the request
FetchFeatureValuesResponse response = featureOnlineStoreServiceClient.FetchFeatureValues(featureView, dataKey);

FetchFeatureValuesAsync(FeatureViewName, FeatureViewDataKey, CallSettings)

public virtual Task<FetchFeatureValuesResponse> FetchFeatureValuesAsync(FeatureViewName featureView, FeatureViewDataKey dataKey, CallSettings callSettings = null)

Fetch feature values under a FeatureView.

Parameters
NameDescription
featureViewFeatureViewName

Required. FeatureView resource format projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}

dataKeyFeatureViewDataKey

Optional. The request key to fetch feature values for.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskFetchFeatureValuesResponse

A Task containing the RPC response.

Example
// Create client
FeatureOnlineStoreServiceClient featureOnlineStoreServiceClient = await FeatureOnlineStoreServiceClient.CreateAsync();
// Initialize request argument(s)
FeatureViewName featureView = FeatureViewName.FromProjectLocationFeatureOnlineStoreFeatureView("[PROJECT]", "[LOCATION]", "[FEATURE_ONLINE_STORE]", "[FEATURE_VIEW]");
FeatureViewDataKey dataKey = new FeatureViewDataKey();
// Make the request
FetchFeatureValuesResponse response = await featureOnlineStoreServiceClient.FetchFeatureValuesAsync(featureView, dataKey);

FetchFeatureValuesAsync(FeatureViewName, FeatureViewDataKey, CancellationToken)

public virtual Task<FetchFeatureValuesResponse> FetchFeatureValuesAsync(FeatureViewName featureView, FeatureViewDataKey dataKey, CancellationToken cancellationToken)

Fetch feature values under a FeatureView.

Parameters
NameDescription
featureViewFeatureViewName

Required. FeatureView resource format projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}

dataKeyFeatureViewDataKey

Optional. The request key to fetch feature values for.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskFetchFeatureValuesResponse

A Task containing the RPC response.

Example
// Create client
FeatureOnlineStoreServiceClient featureOnlineStoreServiceClient = await FeatureOnlineStoreServiceClient.CreateAsync();
// Initialize request argument(s)
FeatureViewName featureView = FeatureViewName.FromProjectLocationFeatureOnlineStoreFeatureView("[PROJECT]", "[LOCATION]", "[FEATURE_ONLINE_STORE]", "[FEATURE_VIEW]");
FeatureViewDataKey dataKey = new FeatureViewDataKey();
// Make the request
FetchFeatureValuesResponse response = await featureOnlineStoreServiceClient.FetchFeatureValuesAsync(featureView, dataKey);

FetchFeatureValuesAsync(FetchFeatureValuesRequest, CallSettings)

public virtual Task<FetchFeatureValuesResponse> FetchFeatureValuesAsync(FetchFeatureValuesRequest request, CallSettings callSettings = null)

Fetch feature values under a FeatureView.

Parameters
NameDescription
requestFetchFeatureValuesRequest

The request object containing all of the parameters for the API call.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskFetchFeatureValuesResponse

A Task containing the RPC response.

Example
// Create client
FeatureOnlineStoreServiceClient featureOnlineStoreServiceClient = await FeatureOnlineStoreServiceClient.CreateAsync();
// Initialize request argument(s)
FetchFeatureValuesRequest request = new FetchFeatureValuesRequest
{
    FeatureViewAsFeatureViewName = FeatureViewName.FromProjectLocationFeatureOnlineStoreFeatureView("[PROJECT]", "[LOCATION]", "[FEATURE_ONLINE_STORE]", "[FEATURE_VIEW]"),
    DataKey = new FeatureViewDataKey(),
    DataFormat = FeatureViewDataFormat.Unspecified,
};
// Make the request
FetchFeatureValuesResponse response = await featureOnlineStoreServiceClient.FetchFeatureValuesAsync(request);

FetchFeatureValuesAsync(FetchFeatureValuesRequest, CancellationToken)

public virtual Task<FetchFeatureValuesResponse> FetchFeatureValuesAsync(FetchFeatureValuesRequest request, CancellationToken cancellationToken)

Fetch feature values under a FeatureView.

Parameters
NameDescription
requestFetchFeatureValuesRequest

The request object containing all of the parameters for the API call.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskFetchFeatureValuesResponse

A Task containing the RPC response.

Example
// Create client
FeatureOnlineStoreServiceClient featureOnlineStoreServiceClient = await FeatureOnlineStoreServiceClient.CreateAsync();
// Initialize request argument(s)
FetchFeatureValuesRequest request = new FetchFeatureValuesRequest
{
    FeatureViewAsFeatureViewName = FeatureViewName.FromProjectLocationFeatureOnlineStoreFeatureView("[PROJECT]", "[LOCATION]", "[FEATURE_ONLINE_STORE]", "[FEATURE_VIEW]"),
    DataKey = new FeatureViewDataKey(),
    DataFormat = FeatureViewDataFormat.Unspecified,
};
// Make the request
FetchFeatureValuesResponse response = await featureOnlineStoreServiceClient.FetchFeatureValuesAsync(request);

FetchFeatureValuesAsync(string, FeatureViewDataKey, CallSettings)

public virtual Task<FetchFeatureValuesResponse> FetchFeatureValuesAsync(string featureView, FeatureViewDataKey dataKey, CallSettings callSettings = null)

Fetch feature values under a FeatureView.

Parameters
NameDescription
featureViewstring

Required. FeatureView resource format projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}

dataKeyFeatureViewDataKey

Optional. The request key to fetch feature values for.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskFetchFeatureValuesResponse

A Task containing the RPC response.

Example
// Create client
FeatureOnlineStoreServiceClient featureOnlineStoreServiceClient = await FeatureOnlineStoreServiceClient.CreateAsync();
// Initialize request argument(s)
string featureView = "projects/[PROJECT]/locations/[LOCATION]/featureOnlineStores/[FEATURE_ONLINE_STORE]/featureViews/[FEATURE_VIEW]";
FeatureViewDataKey dataKey = new FeatureViewDataKey();
// Make the request
FetchFeatureValuesResponse response = await featureOnlineStoreServiceClient.FetchFeatureValuesAsync(featureView, dataKey);

FetchFeatureValuesAsync(string, FeatureViewDataKey, CancellationToken)

public virtual Task<FetchFeatureValuesResponse> FetchFeatureValuesAsync(string featureView, FeatureViewDataKey dataKey, CancellationToken cancellationToken)

Fetch feature values under a FeatureView.

Parameters
NameDescription
featureViewstring

Required. FeatureView resource format projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}

dataKeyFeatureViewDataKey

Optional. The request key to fetch feature values for.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskFetchFeatureValuesResponse

A Task containing the RPC response.

Example
// Create client
FeatureOnlineStoreServiceClient featureOnlineStoreServiceClient = await FeatureOnlineStoreServiceClient.CreateAsync();
// Initialize request argument(s)
string featureView = "projects/[PROJECT]/locations/[LOCATION]/featureOnlineStores/[FEATURE_ONLINE_STORE]/featureViews/[FEATURE_VIEW]";
FeatureViewDataKey dataKey = new FeatureViewDataKey();
// Make the request
FetchFeatureValuesResponse response = await featureOnlineStoreServiceClient.FetchFeatureValuesAsync(featureView, dataKey);

SearchNearestEntities(SearchNearestEntitiesRequest, CallSettings)

public virtual SearchNearestEntitiesResponse SearchNearestEntities(SearchNearestEntitiesRequest request, CallSettings callSettings = null)

Search the nearest entities under a FeatureView. Search only works for indexable feature view; if a feature view isn't indexable, returns Invalid argument response.

Parameters
NameDescription
requestSearchNearestEntitiesRequest

The request object containing all of the parameters for the API call.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
SearchNearestEntitiesResponse

The RPC response.

Example
// Create client
FeatureOnlineStoreServiceClient featureOnlineStoreServiceClient = FeatureOnlineStoreServiceClient.Create();
// Initialize request argument(s)
SearchNearestEntitiesRequest request = new SearchNearestEntitiesRequest
{
    FeatureViewAsFeatureViewName = FeatureViewName.FromProjectLocationFeatureOnlineStoreFeatureView("[PROJECT]", "[LOCATION]", "[FEATURE_ONLINE_STORE]", "[FEATURE_VIEW]"),
    Query = new NearestNeighborQuery(),
    ReturnFullEntity = false,
};
// Make the request
SearchNearestEntitiesResponse response = featureOnlineStoreServiceClient.SearchNearestEntities(request);

SearchNearestEntitiesAsync(SearchNearestEntitiesRequest, CallSettings)

public virtual Task<SearchNearestEntitiesResponse> SearchNearestEntitiesAsync(SearchNearestEntitiesRequest request, CallSettings callSettings = null)

Search the nearest entities under a FeatureView. Search only works for indexable feature view; if a feature view isn't indexable, returns Invalid argument response.

Parameters
NameDescription
requestSearchNearestEntitiesRequest

The request object containing all of the parameters for the API call.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
TaskSearchNearestEntitiesResponse

A Task containing the RPC response.

Example
// Create client
FeatureOnlineStoreServiceClient featureOnlineStoreServiceClient = await FeatureOnlineStoreServiceClient.CreateAsync();
// Initialize request argument(s)
SearchNearestEntitiesRequest request = new SearchNearestEntitiesRequest
{
    FeatureViewAsFeatureViewName = FeatureViewName.FromProjectLocationFeatureOnlineStoreFeatureView("[PROJECT]", "[LOCATION]", "[FEATURE_ONLINE_STORE]", "[FEATURE_VIEW]"),
    Query = new NearestNeighborQuery(),
    ReturnFullEntity = false,
};
// Make the request
SearchNearestEntitiesResponse response = await featureOnlineStoreServiceClient.SearchNearestEntitiesAsync(request);

SearchNearestEntitiesAsync(SearchNearestEntitiesRequest, CancellationToken)

public virtual Task<SearchNearestEntitiesResponse> SearchNearestEntitiesAsync(SearchNearestEntitiesRequest request, CancellationToken cancellationToken)

Search the nearest entities under a FeatureView. Search only works for indexable feature view; if a feature view isn't indexable, returns Invalid argument response.

Parameters
NameDescription
requestSearchNearestEntitiesRequest

The request object containing all of the parameters for the API call.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
TaskSearchNearestEntitiesResponse

A Task containing the RPC response.

Example
// Create client
FeatureOnlineStoreServiceClient featureOnlineStoreServiceClient = await FeatureOnlineStoreServiceClient.CreateAsync();
// Initialize request argument(s)
SearchNearestEntitiesRequest request = new SearchNearestEntitiesRequest
{
    FeatureViewAsFeatureViewName = FeatureViewName.FromProjectLocationFeatureOnlineStoreFeatureView("[PROJECT]", "[LOCATION]", "[FEATURE_ONLINE_STORE]", "[FEATURE_VIEW]"),
    Query = new NearestNeighborQuery(),
    ReturnFullEntity = false,
};
// Make the request
SearchNearestEntitiesResponse response = await featureOnlineStoreServiceClient.SearchNearestEntitiesAsync(request);

ShutdownDefaultChannelsAsync()

public static Task ShutdownDefaultChannelsAsync()

Shuts down any channels automatically created by Create() and CreateAsync(CancellationToken). Channels which weren't automatically created are not affected.

Returns
TypeDescription
Task

A task representing the asynchronous shutdown operation.

Remarks

After calling this method, further calls to Create() and CreateAsync(CancellationToken) will create new channels, which could in turn be shut down by another call to this method.