Vertex AI V1 API - Class Google::Cloud::AIPlatform::V1::FeaturestoreOnlineServingService::Client (v0.9.1)

Reference documentation and code samples for the Vertex AI V1 API class Google::Cloud::AIPlatform::V1::FeaturestoreOnlineServingService::Client.

Client for the FeaturestoreOnlineServingService service.

A service for serving online feature values.

Inherits

  • Object

Methods

.configure

def self.configure() { |config| ... } -> Client::Configuration

Configure the FeaturestoreOnlineServingService Client class.

See Configuration for a description of the configuration fields.

Yields
  • (config) — Configure the Client client.
Yield Parameter
Example
# Modify the configuration for all FeaturestoreOnlineServingService clients
::Google::Cloud::AIPlatform::V1::FeaturestoreOnlineServingService::Client.configure do |config|
  config.timeout = 10.0
end

#configure

def configure() { |config| ... } -> Client::Configuration

Configure the FeaturestoreOnlineServingService Client instance.

The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.

See Configuration for a description of the configuration fields.

Yields
  • (config) — Configure the Client client.
Yield Parameter

#iam_policy_client

def iam_policy_client() -> Google::Iam::V1::IAMPolicy::Client

Get the associated client for mix-in of the IAMPolicy.

Returns
  • (Google::Iam::V1::IAMPolicy::Client)

#initialize

def initialize() { |config| ... } -> Client

Create a new FeaturestoreOnlineServingService client object.

Yields
  • (config) — Configure the FeaturestoreOnlineServingService client.
Yield Parameter
Returns
  • (Client) — a new instance of Client
Example
# Create a client using the default configuration
client = ::Google::Cloud::AIPlatform::V1::FeaturestoreOnlineServingService::Client.new

# Create a client using a custom configuration
client = ::Google::Cloud::AIPlatform::V1::FeaturestoreOnlineServingService::Client.new do |config|
  config.timeout = 10.0
end

#location_client

def location_client() -> Google::Cloud::Location::Locations::Client

Get the associated client for mix-in of the Locations.

Returns
  • (Google::Cloud::Location::Locations::Client)

#read_feature_values

def read_feature_values(request, options = nil) -> ::Google::Cloud::AIPlatform::V1::ReadFeatureValuesResponse
def read_feature_values(entity_type: nil, entity_id: nil, feature_selector: nil) -> ::Google::Cloud::AIPlatform::V1::ReadFeatureValuesResponse

Reads Feature values of a specific entity of an EntityType. For reading feature values of multiple entities of an EntityType, please use StreamingReadFeatureValues.

Overloads
def read_feature_values(request, options = nil) -> ::Google::Cloud::AIPlatform::V1::ReadFeatureValuesResponse
Pass arguments to read_feature_values via a request object, either of type ReadFeatureValuesRequest or an equivalent Hash.
Parameters
  • request (::Google::Cloud::AIPlatform::V1::ReadFeatureValuesRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
  • options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def read_feature_values(entity_type: nil, entity_id: nil, feature_selector: nil) -> ::Google::Cloud::AIPlatform::V1::ReadFeatureValuesResponse
Pass arguments to read_feature_values via keyword arguments. Note that at least one keyword argument is required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash as a request object (see above).
Parameters
  • entity_type (::String) — Required. The resource name of the EntityType for the entity being read. Value format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entityType}. For example, for a machine learning model predicting user clicks on a website, an EntityType ID could be user.
  • entity_id (::String) — Required. ID for a specific entity. For example, for a machine learning model predicting user clicks on a website, an entity ID could be user_123.
  • feature_selector (::Google::Cloud::AIPlatform::V1::FeatureSelector, ::Hash) — Required. Selector choosing Features of the target EntityType.
Yields
  • (response, operation) — Access the result along with the RPC operation
Yield Parameters
Raises
  • (::Google::Cloud::Error) — if the RPC is aborted.
Example

Basic example

require "google/cloud/ai_platform/v1"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::AIPlatform::V1::FeaturestoreOnlineServingService::Client.new

# Create a request. To set request fields, pass in keyword arguments.
request = Google::Cloud::AIPlatform::V1::ReadFeatureValuesRequest.new

# Call the read_feature_values method.
result = client.read_feature_values request

# The returned object is of type Google::Cloud::AIPlatform::V1::ReadFeatureValuesResponse.
p result

#streaming_read_feature_values

def streaming_read_feature_values(request, options = nil) -> ::Enumerable<::Google::Cloud::AIPlatform::V1::ReadFeatureValuesResponse>
def streaming_read_feature_values(entity_type: nil, entity_ids: nil, feature_selector: nil) -> ::Enumerable<::Google::Cloud::AIPlatform::V1::ReadFeatureValuesResponse>

Reads Feature values for multiple entities. Depending on their size, data for different entities may be broken up across multiple responses.

Overloads
def streaming_read_feature_values(request, options = nil) -> ::Enumerable<::Google::Cloud::AIPlatform::V1::ReadFeatureValuesResponse>
Pass arguments to streaming_read_feature_values via a request object, either of type StreamingReadFeatureValuesRequest or an equivalent Hash.
Parameters
  • request (::Google::Cloud::AIPlatform::V1::StreamingReadFeatureValuesRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
  • options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def streaming_read_feature_values(entity_type: nil, entity_ids: nil, feature_selector: nil) -> ::Enumerable<::Google::Cloud::AIPlatform::V1::ReadFeatureValuesResponse>
Pass arguments to streaming_read_feature_values via keyword arguments. Note that at least one keyword argument is required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash as a request object (see above).
Parameters
  • entity_type (::String) — Required. The resource name of the entities' type. Value format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entityType}. For example, for a machine learning model predicting user clicks on a website, an EntityType ID could be user.
  • entity_ids (::Array<::String>) —

    Required. IDs of entities to read Feature values of. The maximum number of IDs is

    1. For example, for a machine learning model predicting user clicks on a website, an entity ID could be user_123.
  • feature_selector (::Google::Cloud::AIPlatform::V1::FeatureSelector, ::Hash) — Required. Selector choosing Features of the target EntityType. Feature IDs will be deduplicated.
Yields
  • (response, operation) — Access the result along with the RPC operation
Yield Parameters
Raises
  • (::Google::Cloud::Error) — if the RPC is aborted.
Example

Basic example

require "google/cloud/ai_platform/v1"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::AIPlatform::V1::FeaturestoreOnlineServingService::Client.new

# Create a request. To set request fields, pass in keyword arguments.
request = Google::Cloud::AIPlatform::V1::StreamingReadFeatureValuesRequest.new

# Call the streaming_read_feature_values method.
result = client.streaming_read_feature_values request

# The returned object is a streamed enumerable yielding elements of
# type ::Google::Cloud::AIPlatform::V1::ReadFeatureValuesResponse.
result.each do |response|
  p response
end