Class v2beta.ServingConfigServiceClient (1.8.0)

Service for modifying ServingConfig. v2beta

Package

@google-cloud/retail

Constructors

(constructor)(opts)

constructor(opts?: ClientOptions);

Construct an instance of ServingConfigServiceClient.

Parameter
Name Description
opts ClientOptions

Properties

apiEndpoint

static get apiEndpoint(): string;

The DNS address for this API service - same as servicePath(), exists for compatibility reasons.

auth

auth: gax.GoogleAuth;

descriptors

descriptors: Descriptors;

innerApiCalls

innerApiCalls: {
        [name: string]: Function;
    };

pathTemplates

pathTemplates: {
        [name: string]: gax.PathTemplate;
    };

port

static get port(): number;

The port for this API service.

scopes

static get scopes(): string[];

The scopes needed to make gRPC calls for every method defined in this service.

servicePath

static get servicePath(): string;

The DNS address for this API service.

servingConfigServiceStub

servingConfigServiceStub?: Promise<{
        [name: string]: Function;
    }>;

warn

warn: (code: string, message: string, warnType?: string) => void;

Methods

addControl(request, options)

addControl(request?: protos.google.cloud.retail.v2beta.IAddControlRequest, options?: CallOptions): Promise<[
        protos.google.cloud.retail.v2beta.IServingConfig,
        protos.google.cloud.retail.v2beta.IAddControlRequest | undefined,
        {} | undefined
    ]>;

Enables a Control on the specified ServingConfig. The control is added in the last position of the list of controls it belongs to (e.g. if it's a facet spec control it will be applied in the last position of servingConfig.facetSpecIds) Returns a ALREADY_EXISTS error if the control has already been applied. Returns a FAILED_PRECONDITION error if the addition could exceed maximum number of control allowed for that type of control.

Parameters
Name Description
request protos.google.cloud.retail.v2beta.IAddControlRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IAddControlRequest | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing [ServingConfig]. Please see the [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods) for more details and examples.

Example

  /**
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The source ServingConfig resource name . Format:
   *  projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/servingConfigs/{serving_config_id}
   */
  // const servingConfig = 'abc123'
  /**
   *  Required. The id of the control to apply. Assumed to be in the same catalog
   *  as the serving config - if id is not found a NOT_FOUND error is returned.
   */
  // const controlId = 'abc123'

  // Imports the Retail library
  const {ServingConfigServiceClient} = require('@google-cloud/retail').v2beta;

  // Instantiates a client
  const retailClient = new ServingConfigServiceClient();

  async function callAddControl() {
    // Construct request
    const request = {
      servingConfig,
      controlId,
    };

    // Run request
    const response = await retailClient.addControl(request);
    console.log(response);
  }

  callAddControl();

addControl(request, options, callback)

addControl(request: protos.google.cloud.retail.v2beta.IAddControlRequest, options: CallOptions, callback: Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IAddControlRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.IAddControlRequest
options CallOptions
callback Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IAddControlRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

addControl(request, callback)

addControl(request: protos.google.cloud.retail.v2beta.IAddControlRequest, callback: Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IAddControlRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.IAddControlRequest
callback Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IAddControlRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

attributesConfigPath(project, location, catalog)

attributesConfigPath(project: string, location: string, catalog: string): string;

Return a fully-qualified attributesConfig resource name string.

Parameters
Name Description
project string
location string
catalog string
Returns
Type Description
string

{string} Resource name string.

catalogPath(project, location, catalog)

catalogPath(project: string, location: string, catalog: string): string;

Return a fully-qualified catalog resource name string.

Parameters
Name Description
project string
location string
catalog string
Returns
Type Description
string

{string} Resource name string.

close()

close(): Promise<void>;

Terminate the gRPC channel and close the client.

The client will no longer be usable and all future behavior is undefined.

Returns
Type Description
Promise<void>

{Promise} A promise that resolves when the client is closed.

completionConfigPath(project, location, catalog)

completionConfigPath(project: string, location: string, catalog: string): string;

Return a fully-qualified completionConfig resource name string.

Parameters
Name Description
project string
location string
catalog string
Returns
Type Description
string

{string} Resource name string.

controlPath(project, location, catalog, control)

controlPath(project: string, location: string, catalog: string, control: string): string;

Return a fully-qualified control resource name string.

Parameters
Name Description
project string
location string
catalog string
control string
Returns
Type Description
string

{string} Resource name string.

createServingConfig(request, options)

createServingConfig(request?: protos.google.cloud.retail.v2beta.ICreateServingConfigRequest, options?: CallOptions): Promise<[
        protos.google.cloud.retail.v2beta.IServingConfig,
        protos.google.cloud.retail.v2beta.ICreateServingConfigRequest | undefined,
        {} | undefined
    ]>;

Creates a ServingConfig.

A maximum of 100 s are allowed in a , otherwise a FAILED_PRECONDITION error is returned.

Parameters
Name Description
request protos.google.cloud.retail.v2beta.ICreateServingConfigRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.ICreateServingConfigRequest | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing [ServingConfig]. Please see the [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods) for more details and examples.

Example

  /**
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Full resource name of parent. Format:
   *  projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}
   */
  // const parent = 'abc123'
  /**
   *  Required. The ServingConfig to create.
   */
  // const servingConfig = {}
  /**
   *  Required. The ID to use for the ServingConfig, which will become the final
   *  component of the ServingConfig's resource name.
   *  This value should be 4-63 characters, and valid characters
   *  are /[a-z][0-9]-_/.
   */
  // const servingConfigId = 'abc123'

  // Imports the Retail library
  const {ServingConfigServiceClient} = require('@google-cloud/retail').v2beta;

  // Instantiates a client
  const retailClient = new ServingConfigServiceClient();

  async function callCreateServingConfig() {
    // Construct request
    const request = {
      parent,
      servingConfig,
      servingConfigId,
    };

    // Run request
    const response = await retailClient.createServingConfig(request);
    console.log(response);
  }

  callCreateServingConfig();

createServingConfig(request, options, callback)

createServingConfig(request: protos.google.cloud.retail.v2beta.ICreateServingConfigRequest, options: CallOptions, callback: Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.ICreateServingConfigRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.ICreateServingConfigRequest
options CallOptions
callback Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.ICreateServingConfigRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

createServingConfig(request, callback)

createServingConfig(request: protos.google.cloud.retail.v2beta.ICreateServingConfigRequest, callback: Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.ICreateServingConfigRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.ICreateServingConfigRequest
callback Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.ICreateServingConfigRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

deleteServingConfig(request, options)

deleteServingConfig(request?: protos.google.cloud.retail.v2beta.IDeleteServingConfigRequest, options?: CallOptions): Promise<[
        protos.google.protobuf.IEmpty,
        protos.google.cloud.retail.v2beta.IDeleteServingConfigRequest | undefined,
        {} | undefined
    ]>;

Deletes a ServingConfig.

Returns a NotFound error if the ServingConfig does not exist.

Parameters
Name Description
request protos.google.cloud.retail.v2beta.IDeleteServingConfigRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.protobuf.IEmpty, protos.google.cloud.retail.v2beta.IDeleteServingConfigRequest | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing [Empty]. Please see the [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods) for more details and examples.

Example

  /**
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The resource name of the ServingConfig to delete. Format:
   *  projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/servingConfigs/{serving_config_id}
   */
  // const name = 'abc123'

  // Imports the Retail library
  const {ServingConfigServiceClient} = require('@google-cloud/retail').v2beta;

  // Instantiates a client
  const retailClient = new ServingConfigServiceClient();

  async function callDeleteServingConfig() {
    // Construct request
    const request = {
      name,
    };

    // Run request
    const response = await retailClient.deleteServingConfig(request);
    console.log(response);
  }

  callDeleteServingConfig();

deleteServingConfig(request, options, callback)

deleteServingConfig(request: protos.google.cloud.retail.v2beta.IDeleteServingConfigRequest, options: CallOptions, callback: Callback<protos.google.protobuf.IEmpty, protos.google.cloud.retail.v2beta.IDeleteServingConfigRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.IDeleteServingConfigRequest
options CallOptions
callback Callback<protos.google.protobuf.IEmpty, protos.google.cloud.retail.v2beta.IDeleteServingConfigRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

deleteServingConfig(request, callback)

deleteServingConfig(request: protos.google.cloud.retail.v2beta.IDeleteServingConfigRequest, callback: Callback<protos.google.protobuf.IEmpty, protos.google.cloud.retail.v2beta.IDeleteServingConfigRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.IDeleteServingConfigRequest
callback Callback<protos.google.protobuf.IEmpty, protos.google.cloud.retail.v2beta.IDeleteServingConfigRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getProjectId()

getProjectId(): Promise<string>;
Returns
Type Description
Promise<string>

getProjectId(callback)

getProjectId(callback: Callback<string, undefined, undefined>): void;
Parameter
Name Description
callback Callback<string, undefined, undefined>
Returns
Type Description
void

getServingConfig(request, options)

getServingConfig(request?: protos.google.cloud.retail.v2beta.IGetServingConfigRequest, options?: CallOptions): Promise<[
        protos.google.cloud.retail.v2beta.IServingConfig,
        protos.google.cloud.retail.v2beta.IGetServingConfigRequest | undefined,
        {} | undefined
    ]>;

Gets a ServingConfig.

Returns a NotFound error if the ServingConfig does not exist.

Parameters
Name Description
request protos.google.cloud.retail.v2beta.IGetServingConfigRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IGetServingConfigRequest | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing [ServingConfig]. Please see the [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods) for more details and examples.

Example

  /**
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The resource name of the ServingConfig to get. Format:
   *  projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/servingConfigs/{serving_config_id}
   */
  // const name = 'abc123'

  // Imports the Retail library
  const {ServingConfigServiceClient} = require('@google-cloud/retail').v2beta;

  // Instantiates a client
  const retailClient = new ServingConfigServiceClient();

  async function callGetServingConfig() {
    // Construct request
    const request = {
      name,
    };

    // Run request
    const response = await retailClient.getServingConfig(request);
    console.log(response);
  }

  callGetServingConfig();

getServingConfig(request, options, callback)

getServingConfig(request: protos.google.cloud.retail.v2beta.IGetServingConfigRequest, options: CallOptions, callback: Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IGetServingConfigRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.IGetServingConfigRequest
options CallOptions
callback Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IGetServingConfigRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getServingConfig(request, callback)

getServingConfig(request: protos.google.cloud.retail.v2beta.IGetServingConfigRequest, callback: Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IGetServingConfigRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.IGetServingConfigRequest
callback Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IGetServingConfigRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

initialize()

initialize(): Promise<{
        [name: string]: Function;
    }>;

Initialize the client. Performs asynchronous operations (such as authentication) and prepares the client. This function will be called automatically when any class method is called for the first time, but if you need to initialize it before calling an actual method, feel free to call initialize() directly.

You can await on this method if you want to make sure the client is initialized.

Returns
Type Description
Promise<{ [name: string]: Function; }>

{Promise} A promise that resolves to an authenticated service stub.

listServingConfigs(request, options)

listServingConfigs(request?: protos.google.cloud.retail.v2beta.IListServingConfigsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.retail.v2beta.IServingConfig[],
        protos.google.cloud.retail.v2beta.IListServingConfigsRequest | null,
        protos.google.cloud.retail.v2beta.IListServingConfigsResponse
    ]>;

Lists all ServingConfigs linked to this catalog.

Parameters
Name Description
request protos.google.cloud.retail.v2beta.IListServingConfigsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.retail.v2beta.IServingConfig[], protos.google.cloud.retail.v2beta.IListServingConfigsRequest | null, protos.google.cloud.retail.v2beta.IListServingConfigsResponse ]>

{Promise} - The promise which resolves to an array. The first element of the array is Array of [ServingConfig]. The client library will perform auto-pagination by default: it will call the API as many times as needed and will merge results from all the pages into this array. Note that it can affect your quota. We recommend using listServingConfigsAsync() method described below for async iteration which you can stop as needed. Please see the [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination) for more details and examples.

listServingConfigs(request, options, callback)

listServingConfigs(request: protos.google.cloud.retail.v2beta.IListServingConfigsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.retail.v2beta.IListServingConfigsRequest, protos.google.cloud.retail.v2beta.IListServingConfigsResponse | null | undefined, protos.google.cloud.retail.v2beta.IServingConfig>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.IListServingConfigsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.retail.v2beta.IListServingConfigsRequest, protos.google.cloud.retail.v2beta.IListServingConfigsResponse | null | undefined, protos.google.cloud.retail.v2beta.IServingConfig>
Returns
Type Description
void

listServingConfigs(request, callback)

listServingConfigs(request: protos.google.cloud.retail.v2beta.IListServingConfigsRequest, callback: PaginationCallback<protos.google.cloud.retail.v2beta.IListServingConfigsRequest, protos.google.cloud.retail.v2beta.IListServingConfigsResponse | null | undefined, protos.google.cloud.retail.v2beta.IServingConfig>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.IListServingConfigsRequest
callback PaginationCallback<protos.google.cloud.retail.v2beta.IListServingConfigsRequest, protos.google.cloud.retail.v2beta.IListServingConfigsResponse | null | undefined, protos.google.cloud.retail.v2beta.IServingConfig>
Returns
Type Description
void

listServingConfigsAsync(request, options)

listServingConfigsAsync(request?: protos.google.cloud.retail.v2beta.IListServingConfigsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.retail.v2beta.IServingConfig>;

Equivalent to listServingConfigs, but returns an iterable object.

for-await-of syntax is used with the iterable to get response elements on-demand.

Parameters
Name Description
request protos.google.cloud.retail.v2beta.IListServingConfigsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
AsyncIterable<protos.google.cloud.retail.v2beta.IServingConfig>

{Object} An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols). When you iterate the returned iterable, each element will be an object representing [ServingConfig]. The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination) for more details and examples.

Example

  /**
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The catalog resource name. Format:
   *  projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}
   */
  // const parent = 'abc123'
  /**
   *  Optional. Maximum number of results to return. If unspecified, defaults
   *  to 100. If a value greater than 100 is provided, at most 100 results are
   *  returned.
   */
  // const pageSize = 1234
  /**
   *  Optional. A page token, received from a previous `ListServingConfigs` call.
   *  Provide this to retrieve the subsequent page.
   */
  // const pageToken = 'abc123'

  // Imports the Retail library
  const {ServingConfigServiceClient} = require('@google-cloud/retail').v2beta;

  // Instantiates a client
  const retailClient = new ServingConfigServiceClient();

  async function callListServingConfigs() {
    // Construct request
    const request = {
      parent,
    };

    // Run request
    const iterable = await retailClient.listServingConfigsAsync(request);
    for await (const response of iterable) {
        console.log(response);
    }
  }

  callListServingConfigs();

listServingConfigsStream(request, options)

listServingConfigsStream(request?: protos.google.cloud.retail.v2beta.IListServingConfigsRequest, options?: CallOptions): Transform;

Equivalent to method.name.toCamelCase(), but returns a NodeJS Stream object.

Parameters
Name Description
request protos.google.cloud.retail.v2beta.IListServingConfigsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Transform

{Stream} An object stream which emits an object representing [ServingConfig] on 'data' event. The client library will perform auto-pagination by default: it will call the API as many times as needed. Note that it can affect your quota. We recommend using listServingConfigsAsync() method described below for async iteration which you can stop as needed. Please see the [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination) for more details and examples.

matchBranchFromProductName(productName)

matchBranchFromProductName(productName: string): string | number;

Parse the branch from Product resource.

Parameter
Name Description
productName string

A fully-qualified path representing Product resource.

Returns
Type Description
string | number

{string} A string representing the branch.

matchCatalogFromAttributesConfigName(attributesConfigName)

matchCatalogFromAttributesConfigName(attributesConfigName: string): string | number;

Parse the catalog from AttributesConfig resource.

Parameter
Name Description
attributesConfigName string

A fully-qualified path representing AttributesConfig resource.

Returns
Type Description
string | number

{string} A string representing the catalog.

matchCatalogFromCatalogName(catalogName)

matchCatalogFromCatalogName(catalogName: string): string | number;

Parse the catalog from Catalog resource.

Parameter
Name Description
catalogName string

A fully-qualified path representing Catalog resource.

Returns
Type Description
string | number

{string} A string representing the catalog.

matchCatalogFromCompletionConfigName(completionConfigName)

matchCatalogFromCompletionConfigName(completionConfigName: string): string | number;

Parse the catalog from CompletionConfig resource.

Parameter
Name Description
completionConfigName string

A fully-qualified path representing CompletionConfig resource.

Returns
Type Description
string | number

{string} A string representing the catalog.

matchCatalogFromControlName(controlName)

matchCatalogFromControlName(controlName: string): string | number;

Parse the catalog from Control resource.

Parameter
Name Description
controlName string

A fully-qualified path representing Control resource.

Returns
Type Description
string | number

{string} A string representing the catalog.

matchCatalogFromProductName(productName)

matchCatalogFromProductName(productName: string): string | number;

Parse the catalog from Product resource.

Parameter
Name Description
productName string

A fully-qualified path representing Product resource.

Returns
Type Description
string | number

{string} A string representing the catalog.

matchCatalogFromServingConfigName(servingConfigName)

matchCatalogFromServingConfigName(servingConfigName: string): string | number;

Parse the catalog from ServingConfig resource.

Parameter
Name Description
servingConfigName string

A fully-qualified path representing ServingConfig resource.

Returns
Type Description
string | number

{string} A string representing the catalog.

matchControlFromControlName(controlName)

matchControlFromControlName(controlName: string): string | number;

Parse the control from Control resource.

Parameter
Name Description
controlName string

A fully-qualified path representing Control resource.

Returns
Type Description
string | number

{string} A string representing the control.

matchLocationFromAttributesConfigName(attributesConfigName)

matchLocationFromAttributesConfigName(attributesConfigName: string): string | number;

Parse the location from AttributesConfig resource.

Parameter
Name Description
attributesConfigName string

A fully-qualified path representing AttributesConfig resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromCatalogName(catalogName)

matchLocationFromCatalogName(catalogName: string): string | number;

Parse the location from Catalog resource.

Parameter
Name Description
catalogName string

A fully-qualified path representing Catalog resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromCompletionConfigName(completionConfigName)

matchLocationFromCompletionConfigName(completionConfigName: string): string | number;

Parse the location from CompletionConfig resource.

Parameter
Name Description
completionConfigName string

A fully-qualified path representing CompletionConfig resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromControlName(controlName)

matchLocationFromControlName(controlName: string): string | number;

Parse the location from Control resource.

Parameter
Name Description
controlName string

A fully-qualified path representing Control resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromProductName(productName)

matchLocationFromProductName(productName: string): string | number;

Parse the location from Product resource.

Parameter
Name Description
productName string

A fully-qualified path representing Product resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromServingConfigName(servingConfigName)

matchLocationFromServingConfigName(servingConfigName: string): string | number;

Parse the location from ServingConfig resource.

Parameter
Name Description
servingConfigName string

A fully-qualified path representing ServingConfig resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchProductFromProductName(productName)

matchProductFromProductName(productName: string): string | number;

Parse the product from Product resource.

Parameter
Name Description
productName string

A fully-qualified path representing Product resource.

Returns
Type Description
string | number

{string} A string representing the product.

matchProjectFromAttributesConfigName(attributesConfigName)

matchProjectFromAttributesConfigName(attributesConfigName: string): string | number;

Parse the project from AttributesConfig resource.

Parameter
Name Description
attributesConfigName string

A fully-qualified path representing AttributesConfig resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromCatalogName(catalogName)

matchProjectFromCatalogName(catalogName: string): string | number;

Parse the project from Catalog resource.

Parameter
Name Description
catalogName string

A fully-qualified path representing Catalog resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromCompletionConfigName(completionConfigName)

matchProjectFromCompletionConfigName(completionConfigName: string): string | number;

Parse the project from CompletionConfig resource.

Parameter
Name Description
completionConfigName string

A fully-qualified path representing CompletionConfig resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromControlName(controlName)

matchProjectFromControlName(controlName: string): string | number;

Parse the project from Control resource.

Parameter
Name Description
controlName string

A fully-qualified path representing Control resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromProductName(productName)

matchProjectFromProductName(productName: string): string | number;

Parse the project from Product resource.

Parameter
Name Description
productName string

A fully-qualified path representing Product resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromServingConfigName(servingConfigName)

matchProjectFromServingConfigName(servingConfigName: string): string | number;

Parse the project from ServingConfig resource.

Parameter
Name Description
servingConfigName string

A fully-qualified path representing ServingConfig resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchServingConfigFromServingConfigName(servingConfigName)

matchServingConfigFromServingConfigName(servingConfigName: string): string | number;

Parse the serving_config from ServingConfig resource.

Parameter
Name Description
servingConfigName string

A fully-qualified path representing ServingConfig resource.

Returns
Type Description
string | number

{string} A string representing the serving_config.

productPath(project, location, catalog, branch, product)

productPath(project: string, location: string, catalog: string, branch: string, product: string): string;

Return a fully-qualified product resource name string.

Parameters
Name Description
project string
location string
catalog string
branch string
product string
Returns
Type Description
string

{string} Resource name string.

removeControl(request, options)

removeControl(request?: protos.google.cloud.retail.v2beta.IRemoveControlRequest, options?: CallOptions): Promise<[
        protos.google.cloud.retail.v2beta.IServingConfig,
        protos.google.cloud.retail.v2beta.IRemoveControlRequest | undefined,
        {} | undefined
    ]>;

Disables a Control on the specified ServingConfig. The control is removed from the ServingConfig. Returns a NOT_FOUND error if the Control is not enabled for the ServingConfig.

Parameters
Name Description
request protos.google.cloud.retail.v2beta.IRemoveControlRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IRemoveControlRequest | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing [ServingConfig]. Please see the [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods) for more details and examples.

Example

  /**
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The source ServingConfig resource name . Format:
   *  projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/servingConfigs/{serving_config_id}
   */
  // const servingConfig = 'abc123'
  /**
   *  Required. The id of the control to apply. Assumed to be in the same catalog
   *  as the serving config.
   */
  // const controlId = 'abc123'

  // Imports the Retail library
  const {ServingConfigServiceClient} = require('@google-cloud/retail').v2beta;

  // Instantiates a client
  const retailClient = new ServingConfigServiceClient();

  async function callRemoveControl() {
    // Construct request
    const request = {
      servingConfig,
      controlId,
    };

    // Run request
    const response = await retailClient.removeControl(request);
    console.log(response);
  }

  callRemoveControl();

removeControl(request, options, callback)

removeControl(request: protos.google.cloud.retail.v2beta.IRemoveControlRequest, options: CallOptions, callback: Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IRemoveControlRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.IRemoveControlRequest
options CallOptions
callback Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IRemoveControlRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

removeControl(request, callback)

removeControl(request: protos.google.cloud.retail.v2beta.IRemoveControlRequest, callback: Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IRemoveControlRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.IRemoveControlRequest
callback Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IRemoveControlRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

servingConfigPath(project, location, catalog, servingConfig)

servingConfigPath(project: string, location: string, catalog: string, servingConfig: string): string;

Return a fully-qualified servingConfig resource name string.

Parameters
Name Description
project string
location string
catalog string
servingConfig string
Returns
Type Description
string

{string} Resource name string.

updateServingConfig(request, options)

updateServingConfig(request?: protos.google.cloud.retail.v2beta.IUpdateServingConfigRequest, options?: CallOptions): Promise<[
        protos.google.cloud.retail.v2beta.IServingConfig,
        protos.google.cloud.retail.v2beta.IUpdateServingConfigRequest | undefined,
        {} | undefined
    ]>;

Updates a ServingConfig.

Parameters
Name Description
request protos.google.cloud.retail.v2beta.IUpdateServingConfigRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IUpdateServingConfigRequest | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing [ServingConfig]. Please see the [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods) for more details and examples.

Example

  /**
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The ServingConfig to update.
   */
  // const servingConfig = {}
  /**
   *  Indicates which fields in the provided
   *  ServingConfig google.cloud.retail.v2beta.ServingConfig  to update. The
   *  following are NOT supported:
   *  * ServingConfig.name google.cloud.retail.v2beta.ServingConfig.name 
   *  If not set, all supported fields are updated.
   */
  // const updateMask = {}

  // Imports the Retail library
  const {ServingConfigServiceClient} = require('@google-cloud/retail').v2beta;

  // Instantiates a client
  const retailClient = new ServingConfigServiceClient();

  async function callUpdateServingConfig() {
    // Construct request
    const request = {
      servingConfig,
    };

    // Run request
    const response = await retailClient.updateServingConfig(request);
    console.log(response);
  }

  callUpdateServingConfig();

updateServingConfig(request, options, callback)

updateServingConfig(request: protos.google.cloud.retail.v2beta.IUpdateServingConfigRequest, options: CallOptions, callback: Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IUpdateServingConfigRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.IUpdateServingConfigRequest
options CallOptions
callback Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IUpdateServingConfigRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

updateServingConfig(request, callback)

updateServingConfig(request: protos.google.cloud.retail.v2beta.IUpdateServingConfigRequest, callback: Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IUpdateServingConfigRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request protos.google.cloud.retail.v2beta.IUpdateServingConfigRequest
callback Callback<protos.google.cloud.retail.v2beta.IServingConfig, protos.google.cloud.retail.v2beta.IUpdateServingConfigRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void