Class v1.TelcoAutomationClient (0.1.0)

TelcoAutomation Service manages the control plane cluster a.k.a. Orchestration Cluster (GKE cluster with config controller) of TNA. It also exposes blueprint APIs which manages the lifecycle of blueprints that control the infrastructure setup (e.g GDCE clusters) and deployment of network functions. v1

Package

@google-cloud/telcoautomation

Constructors

(constructor)(opts, gaxInstance)

constructor(opts?: ClientOptions, gaxInstance?: typeof gax | typeof gax.fallback);

Construct an instance of TelcoAutomationClient.

Parameters
NameDescription
opts ClientOptions
gaxInstance typeof gax | typeof fallback

: loaded instance of google-gax. Useful if you need to avoid loading the default gRPC version and want to use the fallback HTTP implementation. Load only fallback version and pass it to the constructor: ``` const gax = require('google-gax/build/src/fallback'); // avoids loading google-gax with gRPC const client = new TelcoAutomationClient({fallback: true}, gax); ```

Properties

apiEndpoint

get apiEndpoint(): string;

The DNS address for this API service - same as servicePath().

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;
    };

locationsClient

locationsClient: LocationsClient;

operationsClient

operationsClient: gax.OperationsClient;

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

get servicePath(): string;

The DNS address for this API service.

servicePath

static get servicePath(): string;

The DNS address for this API service.

telcoAutomationStub

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

universeDomain

get universeDomain(): string;

warn

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

Methods

applyDeployment(request, options)

applyDeployment(request?: protos.google.cloud.telcoautomation.v1.IApplyDeploymentRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IDeployment,
        (protos.google.cloud.telcoautomation.v1.IApplyDeploymentRequest | undefined),
        {} | undefined
    ]>;

Applies the deployment's YAML files to the parent orchestration cluster.

Parameters
NameDescription
request IApplyDeploymentRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IDeployment, (protos.google.cloud.telcoautomation.v1.IApplyDeploymentRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the deployment to apply to orchestration cluster.
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.applyDeployment(request);
    console.log(response);
  }

  callApplyDeployment();

applyDeployment(request, options, callback)

applyDeployment(request: protos.google.cloud.telcoautomation.v1.IApplyDeploymentRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IApplyDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IApplyDeploymentRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IApplyDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

applyDeployment(request, callback)

applyDeployment(request: protos.google.cloud.telcoautomation.v1.IApplyDeploymentRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IApplyDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IApplyDeploymentRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IApplyDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

applyHydratedDeployment(request, options)

applyHydratedDeployment(request?: protos.google.cloud.telcoautomation.v1.IApplyHydratedDeploymentRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IHydratedDeployment,
        (protos.google.cloud.telcoautomation.v1.IApplyHydratedDeploymentRequest | undefined),
        {} | undefined
    ]>;

Applies a hydrated deployment to a workload cluster.

Parameters
NameDescription
request IApplyHydratedDeploymentRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IHydratedDeployment, (protos.google.cloud.telcoautomation.v1.IApplyHydratedDeploymentRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the hydrated deployment to apply.
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.applyHydratedDeployment(request);
    console.log(response);
  }

  callApplyHydratedDeployment();

applyHydratedDeployment(request, options, callback)

applyHydratedDeployment(request: protos.google.cloud.telcoautomation.v1.IApplyHydratedDeploymentRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IHydratedDeployment, protos.google.cloud.telcoautomation.v1.IApplyHydratedDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IApplyHydratedDeploymentRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IHydratedDeployment, protos.google.cloud.telcoautomation.v1.IApplyHydratedDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

applyHydratedDeployment(request, callback)

applyHydratedDeployment(request: protos.google.cloud.telcoautomation.v1.IApplyHydratedDeploymentRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IHydratedDeployment, protos.google.cloud.telcoautomation.v1.IApplyHydratedDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IApplyHydratedDeploymentRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IHydratedDeployment, protos.google.cloud.telcoautomation.v1.IApplyHydratedDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

approveBlueprint(request, options)

approveBlueprint(request?: protos.google.cloud.telcoautomation.v1.IApproveBlueprintRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IBlueprint,
        (protos.google.cloud.telcoautomation.v1.IApproveBlueprintRequest | undefined),
        {} | undefined
    ]>;

Approves a blueprint and commits a new revision.

Parameters
NameDescription
request IApproveBlueprintRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IBlueprint, (protos.google.cloud.telcoautomation.v1.IApproveBlueprintRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the blueprint to approve. The blueprint must be in
   *  Proposed state. A new revision is committed on approval.
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.approveBlueprint(request);
    console.log(response);
  }

  callApproveBlueprint();

approveBlueprint(request, options, callback)

approveBlueprint(request: protos.google.cloud.telcoautomation.v1.IApproveBlueprintRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IApproveBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IApproveBlueprintRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IApproveBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

approveBlueprint(request, callback)

approveBlueprint(request: protos.google.cloud.telcoautomation.v1.IApproveBlueprintRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IApproveBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IApproveBlueprintRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IApproveBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

blueprintPath(project, location, orchestrationCluster, blueprint)

blueprintPath(project: string, location: string, orchestrationCluster: string, blueprint: string): string;

Return a fully-qualified blueprint resource name string.

Parameters
NameDescription
project string
location string
orchestrationCluster string
blueprint string
Returns
TypeDescription
string

{string} Resource name string.

cancelOperation(request, options, callback)

cancelOperation(request: protos.google.longrunning.CancelOperationRequest, options?: gax.CallOptions | Callback<protos.google.protobuf.Empty, protos.google.longrunning.CancelOperationRequest, {} | undefined | null>, callback?: Callback<protos.google.longrunning.CancelOperationRequest, protos.google.protobuf.Empty, {} | undefined | null>): Promise<protos.google.protobuf.Empty>;

Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED. Clients can use or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an value with a of 1, corresponding to Code.CANCELLED.

Parameters
NameDescription
request CancelOperationRequest

The request object that will be sent.

options CallOptions | Callback<protos.google.protobuf.Empty, protos.google.longrunning.CancelOperationRequest, {} | undefined | null>

Optional parameters. You can override the default settings for this call, e.g, timeout, retries, paginations, etc. See gax.CallOptions for the details.

callback Callback<protos.google.longrunning.CancelOperationRequest, protos.google.protobuf.Empty, {} | undefined | null>

The function which will be called with the result of the API call. {Promise} - The promise which resolves when API call finishes. The promise has a method named "cancel" which cancels the ongoing API call.

Returns
TypeDescription
Promise<protos.google.protobuf.Empty>
Example

const client = longrunning.operationsClient();
await client.cancelOperation({name: ''});

checkCreateEdgeSlmProgress(name)

checkCreateEdgeSlmProgress(name: string): Promise<LROperation<protos.google.cloud.telcoautomation.v1.EdgeSlm, protos.google.cloud.telcoautomation.v1.OperationMetadata>>;

Check the status of the long running operation returned by createEdgeSlm().

Parameter
NameDescription
name string

The operation name that will be passed.

Returns
TypeDescription
Promise<LROperation<protos.google.cloud.telcoautomation.v1.EdgeSlm, protos.google.cloud.telcoautomation.v1.OperationMetadata>>

{Promise} - The promise which resolves to an object. The decoded operation object has result and metadata field to get information from. Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Value for parent.
   */
  // const parent = 'abc123'
  /**
   *  Required. Id of the requesting object
   *  If auto-generating Id server-side, remove this field and
   *  edge_slm_id from the method_signature of Create RPC
   */
  // const edgeSlmId = 'abc123'
  /**
   *  Required. The resource being created
   */
  // const edgeSlm = {}
  /**
   *  Optional. An optional request ID to identify requests. Specify a unique
   *  request ID so that if you must retry your request, the server will know to
   *  ignore the request if it has already been completed. The server will
   *  guarantee that for at least 60 minutes since the first request.
   *  For example, consider a situation where you make an initial request and
   *  the request times out. If you make the request again with the same request
   *  ID, the server can check if original operation with the same request ID
   *  was received, and if so, will ignore the second request. This prevents
   *  clients from accidentally creating duplicate commitments.
   *  The request ID must be a valid UUID with the exception that zero UUID is
   *  not supported (00000000-0000-0000-0000-000000000000).
   */
  // const requestId = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

  async function callCreateEdgeSlm() {
    // Construct request
    const request = {
      parent,
      edgeSlmId,
      edgeSlm,
    };

    // Run request
    const [operation] = await telcoautomationClient.createEdgeSlm(request);
    const [response] = await operation.promise();
    console.log(response);
  }

  callCreateEdgeSlm();

checkCreateOrchestrationClusterProgress(name)

checkCreateOrchestrationClusterProgress(name: string): Promise<LROperation<protos.google.cloud.telcoautomation.v1.OrchestrationCluster, protos.google.cloud.telcoautomation.v1.OperationMetadata>>;

Check the status of the long running operation returned by createOrchestrationCluster().

Parameter
NameDescription
name string

The operation name that will be passed.

Returns
TypeDescription
Promise<LROperation<protos.google.cloud.telcoautomation.v1.OrchestrationCluster, protos.google.cloud.telcoautomation.v1.OperationMetadata>>

{Promise} - The promise which resolves to an object. The decoded operation object has result and metadata field to get information from. Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Value for parent.
   */
  // const parent = 'abc123'
  /**
   *  Required. Id of the requesting object
   *  If auto-generating Id server-side, remove this field and
   *  orchestration_cluster_id from the method_signature of Create RPC
   */
  // const orchestrationClusterId = 'abc123'
  /**
   *  Required. The resource being created
   */
  // const orchestrationCluster = {}
  /**
   *  Optional. An optional request ID to identify requests. Specify a unique
   *  request ID so that if you must retry your request, the server will know to
   *  ignore the request if it has already been completed. The server will
   *  guarantee that for at least 60 minutes since the first request.
   *  For example, consider a situation where you make an initial request and
   *  the request times out. If you make the request again with the same request
   *  ID, the server can check if original operation with the same request ID
   *  was received, and if so, will ignore the second request. This prevents
   *  clients from accidentally creating duplicate commitments.
   *  The request ID must be a valid UUID with the exception that zero UUID is
   *  not supported (00000000-0000-0000-0000-000000000000).
   */
  // const requestId = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

  async function callCreateOrchestrationCluster() {
    // Construct request
    const request = {
      parent,
      orchestrationClusterId,
      orchestrationCluster,
    };

    // Run request
    const [operation] = await telcoautomationClient.createOrchestrationCluster(request);
    const [response] = await operation.promise();
    console.log(response);
  }

  callCreateOrchestrationCluster();

checkDeleteEdgeSlmProgress(name)

checkDeleteEdgeSlmProgress(name: string): Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.telcoautomation.v1.OperationMetadata>>;

Check the status of the long running operation returned by deleteEdgeSlm().

Parameter
NameDescription
name string

The operation name that will be passed.

Returns
TypeDescription
Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.telcoautomation.v1.OperationMetadata>>

{Promise} - The promise which resolves to an object. The decoded operation object has result and metadata field to get information from. Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Name of the resource
   */
  // const name = 'abc123'
  /**
   *  Optional. An optional request ID to identify requests. Specify a unique
   *  request ID so that if you must retry your request, the server will know to
   *  ignore the request if it has already been completed. The server will
   *  guarantee that for at least 60 minutes after the first request.
   *  For example, consider a situation where you make an initial request and
   *  the request times out. If you make the request again with the same request
   *  ID, the server can check if original operation with the same request ID
   *  was received, and if so, will ignore the second request. This prevents
   *  clients from accidentally creating duplicate commitments.
   *  The request ID must be a valid UUID with the exception that zero UUID is
   *  not supported (00000000-0000-0000-0000-000000000000).
   */
  // const requestId = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const [operation] = await telcoautomationClient.deleteEdgeSlm(request);
    const [response] = await operation.promise();
    console.log(response);
  }

  callDeleteEdgeSlm();

checkDeleteOrchestrationClusterProgress(name)

checkDeleteOrchestrationClusterProgress(name: string): Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.telcoautomation.v1.OperationMetadata>>;

Check the status of the long running operation returned by deleteOrchestrationCluster().

Parameter
NameDescription
name string

The operation name that will be passed.

Returns
TypeDescription
Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.telcoautomation.v1.OperationMetadata>>

{Promise} - The promise which resolves to an object. The decoded operation object has result and metadata field to get information from. Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Name of the resource
   */
  // const name = 'abc123'
  /**
   *  Optional. An optional request ID to identify requests. Specify a unique
   *  request ID so that if you must retry your request, the server will know to
   *  ignore the request if it has already been completed. The server will
   *  guarantee that for at least 60 minutes after the first request.
   *  For example, consider a situation where you make an initial request and
   *  the request times out. If you make the request again with the same request
   *  ID, the server can check if original operation with the same request ID
   *  was received, and if so, will ignore the second request. This prevents
   *  clients from accidentally creating duplicate commitments.
   *  The request ID must be a valid UUID with the exception that zero UUID is
   *  not supported (00000000-0000-0000-0000-000000000000).
   */
  // const requestId = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const [operation] = await telcoautomationClient.deleteOrchestrationCluster(request);
    const [response] = await operation.promise();
    console.log(response);
  }

  callDeleteOrchestrationCluster();

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
TypeDescription
Promise<void>

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

computeDeploymentStatus(request, options)

computeDeploymentStatus(request?: protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusResponse,
        (protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusRequest | undefined),
        {} | undefined
    ]>;

Returns the requested deployment status.

Parameters
NameDescription
request IComputeDeploymentStatusRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusResponse, (protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing ComputeDeploymentStatusResponse. Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the deployment without revisionID.
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.computeDeploymentStatus(request);
    console.log(response);
  }

  callComputeDeploymentStatus();

computeDeploymentStatus(request, options, callback)

computeDeploymentStatus(request: protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusResponse, protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IComputeDeploymentStatusRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusResponse, protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

computeDeploymentStatus(request, callback)

computeDeploymentStatus(request: protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusResponse, protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IComputeDeploymentStatusRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusResponse, protos.google.cloud.telcoautomation.v1.IComputeDeploymentStatusRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

createBlueprint(request, options)

createBlueprint(request?: protos.google.cloud.telcoautomation.v1.ICreateBlueprintRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IBlueprint,
        (protos.google.cloud.telcoautomation.v1.ICreateBlueprintRequest | undefined),
        {} | undefined
    ]>;

Creates a blueprint.

Parameters
NameDescription
request ICreateBlueprintRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IBlueprint, (protos.google.cloud.telcoautomation.v1.ICreateBlueprintRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of parent resource.
   *  Format should be -
   *  "projects/{project_id}/locations/{location_name}/orchestrationClusters/{orchestration_cluster}".
   */
  // const parent = 'abc123'
  /**
   *  Optional. The name of the blueprint.
   */
  // const blueprintId = 'abc123'
  /**
   *  Required. The `Blueprint` to create.
   */
  // const blueprint = {}

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.createBlueprint(request);
    console.log(response);
  }

  callCreateBlueprint();

createBlueprint(request, options, callback)

createBlueprint(request: protos.google.cloud.telcoautomation.v1.ICreateBlueprintRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.ICreateBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request ICreateBlueprintRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.ICreateBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

createBlueprint(request, callback)

createBlueprint(request: protos.google.cloud.telcoautomation.v1.ICreateBlueprintRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.ICreateBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request ICreateBlueprintRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.ICreateBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

createDeployment(request, options)

createDeployment(request?: protos.google.cloud.telcoautomation.v1.ICreateDeploymentRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IDeployment,
        (protos.google.cloud.telcoautomation.v1.ICreateDeploymentRequest | undefined),
        {} | undefined
    ]>;

Creates a deployment.

Parameters
NameDescription
request ICreateDeploymentRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IDeployment, (protos.google.cloud.telcoautomation.v1.ICreateDeploymentRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of parent resource.
   *  Format should be -
   *  "projects/{project_id}/locations/{location_name}/orchestrationClusters/{orchestration_cluster}".
   */
  // const parent = 'abc123'
  /**
   *  Optional. The name of the deployment.
   */
  // const deploymentId = 'abc123'
  /**
   *  Required. The `Deployment` to create.
   */
  // const deployment = {}

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.createDeployment(request);
    console.log(response);
  }

  callCreateDeployment();

createDeployment(request, options, callback)

createDeployment(request: protos.google.cloud.telcoautomation.v1.ICreateDeploymentRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.ICreateDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request ICreateDeploymentRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.ICreateDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

createDeployment(request, callback)

createDeployment(request: protos.google.cloud.telcoautomation.v1.ICreateDeploymentRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.ICreateDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request ICreateDeploymentRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.ICreateDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

createEdgeSlm(request, options)

createEdgeSlm(request?: protos.google.cloud.telcoautomation.v1.ICreateEdgeSlmRequest, options?: CallOptions): Promise<[
        LROperation<protos.google.cloud.telcoautomation.v1.IEdgeSlm, protos.google.cloud.telcoautomation.v1.IOperationMetadata>,
        protos.google.longrunning.IOperation | undefined,
        {} | undefined
    ]>;

Creates a new EdgeSlm in a given project and location.

Parameters
NameDescription
request ICreateEdgeSlmRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ LROperation<protos.google.cloud.telcoautomation.v1.IEdgeSlm, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing a long running operation. Its promise() method returns a promise you can await for. Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Value for parent.
   */
  // const parent = 'abc123'
  /**
   *  Required. Id of the requesting object
   *  If auto-generating Id server-side, remove this field and
   *  edge_slm_id from the method_signature of Create RPC
   */
  // const edgeSlmId = 'abc123'
  /**
   *  Required. The resource being created
   */
  // const edgeSlm = {}
  /**
   *  Optional. An optional request ID to identify requests. Specify a unique
   *  request ID so that if you must retry your request, the server will know to
   *  ignore the request if it has already been completed. The server will
   *  guarantee that for at least 60 minutes since the first request.
   *  For example, consider a situation where you make an initial request and
   *  the request times out. If you make the request again with the same request
   *  ID, the server can check if original operation with the same request ID
   *  was received, and if so, will ignore the second request. This prevents
   *  clients from accidentally creating duplicate commitments.
   *  The request ID must be a valid UUID with the exception that zero UUID is
   *  not supported (00000000-0000-0000-0000-000000000000).
   */
  // const requestId = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

  async function callCreateEdgeSlm() {
    // Construct request
    const request = {
      parent,
      edgeSlmId,
      edgeSlm,
    };

    // Run request
    const [operation] = await telcoautomationClient.createEdgeSlm(request);
    const [response] = await operation.promise();
    console.log(response);
  }

  callCreateEdgeSlm();

createEdgeSlm(request, options, callback)

createEdgeSlm(request: protos.google.cloud.telcoautomation.v1.ICreateEdgeSlmRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.telcoautomation.v1.IEdgeSlm, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request ICreateEdgeSlmRequest
options CallOptions
callback Callback<LROperation<protos.google.cloud.telcoautomation.v1.IEdgeSlm, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

createEdgeSlm(request, callback)

createEdgeSlm(request: protos.google.cloud.telcoautomation.v1.ICreateEdgeSlmRequest, callback: Callback<LROperation<protos.google.cloud.telcoautomation.v1.IEdgeSlm, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request ICreateEdgeSlmRequest
callback Callback<LROperation<protos.google.cloud.telcoautomation.v1.IEdgeSlm, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

createOrchestrationCluster(request, options)

createOrchestrationCluster(request?: protos.google.cloud.telcoautomation.v1.ICreateOrchestrationClusterRequest, options?: CallOptions): Promise<[
        LROperation<protos.google.cloud.telcoautomation.v1.IOrchestrationCluster, protos.google.cloud.telcoautomation.v1.IOperationMetadata>,
        protos.google.longrunning.IOperation | undefined,
        {} | undefined
    ]>;

Creates a new OrchestrationCluster in a given project and location.

Parameters
NameDescription
request ICreateOrchestrationClusterRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ LROperation<protos.google.cloud.telcoautomation.v1.IOrchestrationCluster, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing a long running operation. Its promise() method returns a promise you can await for. Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Value for parent.
   */
  // const parent = 'abc123'
  /**
   *  Required. Id of the requesting object
   *  If auto-generating Id server-side, remove this field and
   *  orchestration_cluster_id from the method_signature of Create RPC
   */
  // const orchestrationClusterId = 'abc123'
  /**
   *  Required. The resource being created
   */
  // const orchestrationCluster = {}
  /**
   *  Optional. An optional request ID to identify requests. Specify a unique
   *  request ID so that if you must retry your request, the server will know to
   *  ignore the request if it has already been completed. The server will
   *  guarantee that for at least 60 minutes since the first request.
   *  For example, consider a situation where you make an initial request and
   *  the request times out. If you make the request again with the same request
   *  ID, the server can check if original operation with the same request ID
   *  was received, and if so, will ignore the second request. This prevents
   *  clients from accidentally creating duplicate commitments.
   *  The request ID must be a valid UUID with the exception that zero UUID is
   *  not supported (00000000-0000-0000-0000-000000000000).
   */
  // const requestId = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

  async function callCreateOrchestrationCluster() {
    // Construct request
    const request = {
      parent,
      orchestrationClusterId,
      orchestrationCluster,
    };

    // Run request
    const [operation] = await telcoautomationClient.createOrchestrationCluster(request);
    const [response] = await operation.promise();
    console.log(response);
  }

  callCreateOrchestrationCluster();

createOrchestrationCluster(request, options, callback)

createOrchestrationCluster(request: protos.google.cloud.telcoautomation.v1.ICreateOrchestrationClusterRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.telcoautomation.v1.IOrchestrationCluster, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request ICreateOrchestrationClusterRequest
options CallOptions
callback Callback<LROperation<protos.google.cloud.telcoautomation.v1.IOrchestrationCluster, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

createOrchestrationCluster(request, callback)

createOrchestrationCluster(request: protos.google.cloud.telcoautomation.v1.ICreateOrchestrationClusterRequest, callback: Callback<LROperation<protos.google.cloud.telcoautomation.v1.IOrchestrationCluster, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request ICreateOrchestrationClusterRequest
callback Callback<LROperation<protos.google.cloud.telcoautomation.v1.IOrchestrationCluster, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

deleteBlueprint(request, options)

deleteBlueprint(request?: protos.google.cloud.telcoautomation.v1.IDeleteBlueprintRequest, options?: CallOptions): Promise<[
        protos.google.protobuf.IEmpty,
        (protos.google.cloud.telcoautomation.v1.IDeleteBlueprintRequest | undefined),
        {} | undefined
    ]>;

Deletes a blueprint and all its revisions.

Parameters
NameDescription
request IDeleteBlueprintRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.protobuf.IEmpty, (protos.google.cloud.telcoautomation.v1.IDeleteBlueprintRequest | 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 for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of blueprint to delete.
   *  Blueprint name should be in the format {blueprint_id}, if
   *  {blueprint_id}@{revision_id} is passed then the API throws invalid
   *  argument.
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.deleteBlueprint(request);
    console.log(response);
  }

  callDeleteBlueprint();

deleteBlueprint(request, options, callback)

deleteBlueprint(request: protos.google.cloud.telcoautomation.v1.IDeleteBlueprintRequest, options: CallOptions, callback: Callback<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IDeleteBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IDeleteBlueprintRequest
options CallOptions
callback Callback<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IDeleteBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

deleteBlueprint(request, callback)

deleteBlueprint(request: protos.google.cloud.telcoautomation.v1.IDeleteBlueprintRequest, callback: Callback<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IDeleteBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IDeleteBlueprintRequest
callback Callback<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IDeleteBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

deleteEdgeSlm(request, options)

deleteEdgeSlm(request?: protos.google.cloud.telcoautomation.v1.IDeleteEdgeSlmRequest, options?: CallOptions): Promise<[
        LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IOperationMetadata>,
        protos.google.longrunning.IOperation | undefined,
        {} | undefined
    ]>;

Deletes a single EdgeSlm.

Parameters
NameDescription
request IDeleteEdgeSlmRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing a long running operation. Its promise() method returns a promise you can await for. Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Name of the resource
   */
  // const name = 'abc123'
  /**
   *  Optional. An optional request ID to identify requests. Specify a unique
   *  request ID so that if you must retry your request, the server will know to
   *  ignore the request if it has already been completed. The server will
   *  guarantee that for at least 60 minutes after the first request.
   *  For example, consider a situation where you make an initial request and
   *  the request times out. If you make the request again with the same request
   *  ID, the server can check if original operation with the same request ID
   *  was received, and if so, will ignore the second request. This prevents
   *  clients from accidentally creating duplicate commitments.
   *  The request ID must be a valid UUID with the exception that zero UUID is
   *  not supported (00000000-0000-0000-0000-000000000000).
   */
  // const requestId = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const [operation] = await telcoautomationClient.deleteEdgeSlm(request);
    const [response] = await operation.promise();
    console.log(response);
  }

  callDeleteEdgeSlm();

deleteEdgeSlm(request, options, callback)

deleteEdgeSlm(request: protos.google.cloud.telcoautomation.v1.IDeleteEdgeSlmRequest, options: CallOptions, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IDeleteEdgeSlmRequest
options CallOptions
callback Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

deleteEdgeSlm(request, callback)

deleteEdgeSlm(request: protos.google.cloud.telcoautomation.v1.IDeleteEdgeSlmRequest, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IDeleteEdgeSlmRequest
callback Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

deleteOperation(request, options, callback)

deleteOperation(request: protos.google.longrunning.DeleteOperationRequest, options?: gax.CallOptions | Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>, callback?: Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>): Promise<protos.google.protobuf.Empty>;

Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED.

Parameters
NameDescription
request DeleteOperationRequest

The request object that will be sent.

options CallOptions | Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>

Optional parameters. You can override the default settings for this call, e.g, timeout, retries, paginations, etc. See gax.CallOptions for the details.

callback Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>

The function which will be called with the result of the API call. {Promise} - The promise which resolves when API call finishes. The promise has a method named "cancel" which cancels the ongoing API call.

Returns
TypeDescription
Promise<protos.google.protobuf.Empty>
Example

const client = longrunning.operationsClient();
await client.deleteOperation({name: ''});

deleteOrchestrationCluster(request, options)

deleteOrchestrationCluster(request?: protos.google.cloud.telcoautomation.v1.IDeleteOrchestrationClusterRequest, options?: CallOptions): Promise<[
        LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IOperationMetadata>,
        protos.google.longrunning.IOperation | undefined,
        {} | undefined
    ]>;

Deletes a single OrchestrationCluster.

Parameters
NameDescription
request IDeleteOrchestrationClusterRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing a long running operation. Its promise() method returns a promise you can await for. Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Name of the resource
   */
  // const name = 'abc123'
  /**
   *  Optional. An optional request ID to identify requests. Specify a unique
   *  request ID so that if you must retry your request, the server will know to
   *  ignore the request if it has already been completed. The server will
   *  guarantee that for at least 60 minutes after the first request.
   *  For example, consider a situation where you make an initial request and
   *  the request times out. If you make the request again with the same request
   *  ID, the server can check if original operation with the same request ID
   *  was received, and if so, will ignore the second request. This prevents
   *  clients from accidentally creating duplicate commitments.
   *  The request ID must be a valid UUID with the exception that zero UUID is
   *  not supported (00000000-0000-0000-0000-000000000000).
   */
  // const requestId = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const [operation] = await telcoautomationClient.deleteOrchestrationCluster(request);
    const [response] = await operation.promise();
    console.log(response);
  }

  callDeleteOrchestrationCluster();

deleteOrchestrationCluster(request, options, callback)

deleteOrchestrationCluster(request: protos.google.cloud.telcoautomation.v1.IDeleteOrchestrationClusterRequest, options: CallOptions, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IDeleteOrchestrationClusterRequest
options CallOptions
callback Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

deleteOrchestrationCluster(request, callback)

deleteOrchestrationCluster(request: protos.google.cloud.telcoautomation.v1.IDeleteOrchestrationClusterRequest, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IDeleteOrchestrationClusterRequest
callback Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

deploymentPath(project, location, orchestrationCluster, deployment)

deploymentPath(project: string, location: string, orchestrationCluster: string, deployment: string): string;

Return a fully-qualified deployment resource name string.

Parameters
NameDescription
project string
location string
orchestrationCluster string
deployment string
Returns
TypeDescription
string

{string} Resource name string.

discardBlueprintChanges(request, options)

discardBlueprintChanges(request?: protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesResponse,
        (protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesRequest | undefined),
        {} | undefined
    ]>;

Discards the changes in a blueprint and reverts the blueprint to the last approved blueprint revision. No changes take place if a blueprint does not have revisions.

Parameters
NameDescription
request IDiscardBlueprintChangesRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesResponse, (protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing DiscardBlueprintChangesResponse. Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the blueprint of which changes are being discarded.
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.discardBlueprintChanges(request);
    console.log(response);
  }

  callDiscardBlueprintChanges();

discardBlueprintChanges(request, options, callback)

discardBlueprintChanges(request: protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesResponse, protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IDiscardBlueprintChangesRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesResponse, protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

discardBlueprintChanges(request, callback)

discardBlueprintChanges(request: protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesResponse, protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IDiscardBlueprintChangesRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesResponse, protos.google.cloud.telcoautomation.v1.IDiscardBlueprintChangesRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

discardDeploymentChanges(request, options)

discardDeploymentChanges(request?: protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesResponse,
        (protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesRequest | undefined),
        {} | undefined
    ]>;

Discards the changes in a deployment and reverts the deployment to the last approved deployment revision. No changes take place if a deployment does not have revisions.

Parameters
NameDescription
request IDiscardDeploymentChangesRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesResponse, (protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing DiscardDeploymentChangesResponse. Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the deployment of which changes are being discarded.
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.discardDeploymentChanges(request);
    console.log(response);
  }

  callDiscardDeploymentChanges();

discardDeploymentChanges(request, options, callback)

discardDeploymentChanges(request: protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesResponse, protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IDiscardDeploymentChangesRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesResponse, protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

discardDeploymentChanges(request, callback)

discardDeploymentChanges(request: protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesResponse, protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IDiscardDeploymentChangesRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesResponse, protos.google.cloud.telcoautomation.v1.IDiscardDeploymentChangesRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

edgeSlmPath(project, location, edgeSlm)

edgeSlmPath(project: string, location: string, edgeSlm: string): string;

Return a fully-qualified edgeSlm resource name string.

Parameters
NameDescription
project string
location string
edgeSlm string
Returns
TypeDescription
string

{string} Resource name string.

getBlueprint(request, options)

getBlueprint(request?: protos.google.cloud.telcoautomation.v1.IGetBlueprintRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IBlueprint,
        protos.google.cloud.telcoautomation.v1.IGetBlueprintRequest | undefined,
        {} | undefined
    ]>;

Returns the requested blueprint.

Parameters
NameDescription
request IGetBlueprintRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IGetBlueprintRequest | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the blueprint.
   *  Case 1: If the name provided in the request is
   *  {blueprint_id}@{revision_id}, then the revision with revision_id will be
   *  returned. Case 2: If the name provided in the request is {blueprint}, then
   *  the current state of the blueprint is returned.
   */
  // const name = 'abc123'
  /**
   *  Optional. Defines the type of view of the blueprint.
   *  When field is not present BLUEPRINT_VIEW_BASIC is considered as default.
   */
  // const view = {}

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.getBlueprint(request);
    console.log(response);
  }

  callGetBlueprint();

getBlueprint(request, options, callback)

getBlueprint(request: protos.google.cloud.telcoautomation.v1.IGetBlueprintRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IGetBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IGetBlueprintRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IGetBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

getBlueprint(request, callback)

getBlueprint(request: protos.google.cloud.telcoautomation.v1.IGetBlueprintRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IGetBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IGetBlueprintRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IGetBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

getDeployment(request, options)

getDeployment(request?: protos.google.cloud.telcoautomation.v1.IGetDeploymentRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IDeployment,
        protos.google.cloud.telcoautomation.v1.IGetDeploymentRequest | undefined,
        {} | undefined
    ]>;

Returns the requested deployment.

Parameters
NameDescription
request IGetDeploymentRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IGetDeploymentRequest | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the deployment.
   *  Case 1: If the name provided in the request is
   *  {deployment_id}@{revision_id}, then the revision with revision_id will be
   *  returned.
   *  Case 2: If the name provided in the request is {deployment}, then
   *  the current state of the deployment is returned.
   */
  // const name = 'abc123'
  /**
   *  Optional. Defines the type of view of the deployment.
   *  When field is not present VIEW_BASIC is considered as default.
   */
  // const view = {}

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.getDeployment(request);
    console.log(response);
  }

  callGetDeployment();

getDeployment(request, options, callback)

getDeployment(request: protos.google.cloud.telcoautomation.v1.IGetDeploymentRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IGetDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IGetDeploymentRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IGetDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

getDeployment(request, callback)

getDeployment(request: protos.google.cloud.telcoautomation.v1.IGetDeploymentRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IGetDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IGetDeploymentRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IGetDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

getEdgeSlm(request, options)

getEdgeSlm(request?: protos.google.cloud.telcoautomation.v1.IGetEdgeSlmRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IEdgeSlm,
        protos.google.cloud.telcoautomation.v1.IGetEdgeSlmRequest | undefined,
        {} | undefined
    ]>;

Gets details of a single EdgeSlm.

Parameters
NameDescription
request IGetEdgeSlmRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IEdgeSlm, protos.google.cloud.telcoautomation.v1.IGetEdgeSlmRequest | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Name of the resource
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.getEdgeSlm(request);
    console.log(response);
  }

  callGetEdgeSlm();

getEdgeSlm(request, options, callback)

getEdgeSlm(request: protos.google.cloud.telcoautomation.v1.IGetEdgeSlmRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IEdgeSlm, protos.google.cloud.telcoautomation.v1.IGetEdgeSlmRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IGetEdgeSlmRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IEdgeSlm, protos.google.cloud.telcoautomation.v1.IGetEdgeSlmRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

getEdgeSlm(request, callback)

getEdgeSlm(request: protos.google.cloud.telcoautomation.v1.IGetEdgeSlmRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IEdgeSlm, protos.google.cloud.telcoautomation.v1.IGetEdgeSlmRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IGetEdgeSlmRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IEdgeSlm, protos.google.cloud.telcoautomation.v1.IGetEdgeSlmRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

getHydratedDeployment(request, options)

getHydratedDeployment(request?: protos.google.cloud.telcoautomation.v1.IGetHydratedDeploymentRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IHydratedDeployment,
        (protos.google.cloud.telcoautomation.v1.IGetHydratedDeploymentRequest | undefined),
        {} | undefined
    ]>;

Returns the requested hydrated deployment.

Parameters
NameDescription
request IGetHydratedDeploymentRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IHydratedDeployment, (protos.google.cloud.telcoautomation.v1.IGetHydratedDeploymentRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Name of the hydrated deployment.
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.getHydratedDeployment(request);
    console.log(response);
  }

  callGetHydratedDeployment();

getHydratedDeployment(request, options, callback)

getHydratedDeployment(request: protos.google.cloud.telcoautomation.v1.IGetHydratedDeploymentRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IHydratedDeployment, protos.google.cloud.telcoautomation.v1.IGetHydratedDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IGetHydratedDeploymentRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IHydratedDeployment, protos.google.cloud.telcoautomation.v1.IGetHydratedDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

getHydratedDeployment(request, callback)

getHydratedDeployment(request: protos.google.cloud.telcoautomation.v1.IGetHydratedDeploymentRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IHydratedDeployment, protos.google.cloud.telcoautomation.v1.IGetHydratedDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IGetHydratedDeploymentRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IHydratedDeployment, protos.google.cloud.telcoautomation.v1.IGetHydratedDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

getLocation(request, options, callback)

getLocation(request: LocationProtos.google.cloud.location.IGetLocationRequest, options?: gax.CallOptions | Callback<LocationProtos.google.cloud.location.ILocation, LocationProtos.google.cloud.location.IGetLocationRequest | null | undefined, {} | null | undefined>, callback?: Callback<LocationProtos.google.cloud.location.ILocation, LocationProtos.google.cloud.location.IGetLocationRequest | null | undefined, {} | null | undefined>): Promise<LocationProtos.google.cloud.location.ILocation>;

Gets information about a location.

Parameters
NameDescription
request LocationProtos.google.cloud.location.IGetLocationRequest

The request object that will be sent.

options CallOptions | Callback<google.cloud.location.ILocation, google.cloud.location.IGetLocationRequest | null | undefined, {} | null | undefined>

Call options. See CallOptions for more details.

callback Callback<google.cloud.location.ILocation, google.cloud.location.IGetLocationRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
Promise<google.cloud.location.ILocation>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

const [response] = await client.getLocation(request);

getOperation(request, options, callback)

getOperation(request: protos.google.longrunning.GetOperationRequest, options?: gax.CallOptions | Callback<protos.google.longrunning.Operation, protos.google.longrunning.GetOperationRequest, {} | null | undefined>, callback?: Callback<protos.google.longrunning.Operation, protos.google.longrunning.GetOperationRequest, {} | null | undefined>): Promise<[protos.google.longrunning.Operation]>;

Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.

Parameters
NameDescription
request GetOperationRequest

The request object that will be sent.

options CallOptions | Callback<protos.google.longrunning.Operation, protos.google.longrunning.GetOperationRequest, {} | null | undefined>

Optional parameters. You can override the default settings for this call, e.g, timeout, retries, paginations, etc. See gax.CallOptions for the details.

callback Callback<protos.google.longrunning.Operation, protos.google.longrunning.GetOperationRequest, {} | null | undefined>

The function which will be called with the result of the API call.

The second parameter to the callback is an object representing . {Promise} - The promise which resolves to an array. The first element of the array is an object representing . The promise has a method named "cancel" which cancels the ongoing API call.

Returns
TypeDescription
Promise<[protos.google.longrunning.Operation]>
Example

const client = longrunning.operationsClient();
const name = '';
const [response] = await client.getOperation({name});
// doThingsWith(response)

getOrchestrationCluster(request, options)

getOrchestrationCluster(request?: protos.google.cloud.telcoautomation.v1.IGetOrchestrationClusterRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IOrchestrationCluster,
        (protos.google.cloud.telcoautomation.v1.IGetOrchestrationClusterRequest | undefined),
        {} | undefined
    ]>;

Gets details of a single OrchestrationCluster.

Parameters
NameDescription
request IGetOrchestrationClusterRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IOrchestrationCluster, (protos.google.cloud.telcoautomation.v1.IGetOrchestrationClusterRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Name of the resource
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.getOrchestrationCluster(request);
    console.log(response);
  }

  callGetOrchestrationCluster();

getOrchestrationCluster(request, options, callback)

getOrchestrationCluster(request: protos.google.cloud.telcoautomation.v1.IGetOrchestrationClusterRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IOrchestrationCluster, protos.google.cloud.telcoautomation.v1.IGetOrchestrationClusterRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IGetOrchestrationClusterRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IOrchestrationCluster, protos.google.cloud.telcoautomation.v1.IGetOrchestrationClusterRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

getOrchestrationCluster(request, callback)

getOrchestrationCluster(request: protos.google.cloud.telcoautomation.v1.IGetOrchestrationClusterRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IOrchestrationCluster, protos.google.cloud.telcoautomation.v1.IGetOrchestrationClusterRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IGetOrchestrationClusterRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IOrchestrationCluster, protos.google.cloud.telcoautomation.v1.IGetOrchestrationClusterRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

getProjectId()

getProjectId(): Promise<string>;
Returns
TypeDescription
Promise<string>

getProjectId(callback)

getProjectId(callback: Callback<string, undefined, undefined>): void;
Parameter
NameDescription
callback Callback<string, undefined, undefined>
Returns
TypeDescription
void

getPublicBlueprint(request, options)

getPublicBlueprint(request?: protos.google.cloud.telcoautomation.v1.IGetPublicBlueprintRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IPublicBlueprint,
        (protos.google.cloud.telcoautomation.v1.IGetPublicBlueprintRequest | undefined),
        {} | undefined
    ]>;

Returns the requested public blueprint.

Parameters
NameDescription
request IGetPublicBlueprintRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IPublicBlueprint, (protos.google.cloud.telcoautomation.v1.IGetPublicBlueprintRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing PublicBlueprint. Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the public blueprint.
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.getPublicBlueprint(request);
    console.log(response);
  }

  callGetPublicBlueprint();

getPublicBlueprint(request, options, callback)

getPublicBlueprint(request: protos.google.cloud.telcoautomation.v1.IGetPublicBlueprintRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IPublicBlueprint, protos.google.cloud.telcoautomation.v1.IGetPublicBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IGetPublicBlueprintRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IPublicBlueprint, protos.google.cloud.telcoautomation.v1.IGetPublicBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

getPublicBlueprint(request, callback)

getPublicBlueprint(request: protos.google.cloud.telcoautomation.v1.IGetPublicBlueprintRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IPublicBlueprint, protos.google.cloud.telcoautomation.v1.IGetPublicBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IGetPublicBlueprintRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IPublicBlueprint, protos.google.cloud.telcoautomation.v1.IGetPublicBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

hydratedDeploymentPath(project, location, orchestrationCluster, deployment, hydratedDeployment)

hydratedDeploymentPath(project: string, location: string, orchestrationCluster: string, deployment: string, hydratedDeployment: string): string;

Return a fully-qualified hydratedDeployment resource name string.

Parameters
NameDescription
project string
location string
orchestrationCluster string
deployment string
hydratedDeployment string
Returns
TypeDescription
string

{string} Resource name string.

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
TypeDescription
Promise<{ [name: string]: Function; }>

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

listBlueprintRevisions(request, options)

listBlueprintRevisions(request?: protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IBlueprint[],
        protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsRequest | null,
        protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsResponse
    ]>;

List blueprint revisions of a given blueprint.

Parameters
NameDescription
request IListBlueprintRevisionsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IBlueprint[], protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsRequest | null, protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsResponse ]>

{Promise} - The promise which resolves to an array. The first element of the array is Array of . 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 listBlueprintRevisionsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listBlueprintRevisions(request, options, callback)

listBlueprintRevisions(request: protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsRequest, protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IBlueprint>): void;
Parameters
NameDescription
request IListBlueprintRevisionsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsRequest, protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IBlueprint>
Returns
TypeDescription
void

listBlueprintRevisions(request, callback)

listBlueprintRevisions(request: protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsRequest, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsRequest, protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IBlueprint>): void;
Parameters
NameDescription
request IListBlueprintRevisionsRequest
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsRequest, protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IBlueprint>
Returns
TypeDescription
void

listBlueprintRevisionsAsync(request, options)

listBlueprintRevisionsAsync(request?: protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.telcoautomation.v1.IBlueprint>;

Equivalent to listBlueprintRevisions, but returns an iterable object.

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

Parameters
NameDescription
request IListBlueprintRevisionsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
AsyncIterable<protos.google.cloud.telcoautomation.v1.IBlueprint>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing . 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 for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the blueprint to list revisions for.
   */
  // const name = 'abc123'
  /**
   *  The maximum number of revisions to return per page.
   */
  // const pageSize = 1234
  /**
   *  The page token, received from a previous ListBlueprintRevisions call
   *  It can be provided to retrieve the subsequent page.
   */
  // const pageToken = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

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

  callListBlueprintRevisions();

listBlueprintRevisionsStream(request, options)

listBlueprintRevisionsStream(request?: protos.google.cloud.telcoautomation.v1.IListBlueprintRevisionsRequest, options?: CallOptions): Transform;

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

Parameters
NameDescription
request IListBlueprintRevisionsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Transform

{Stream} An object stream which emits an object representing 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 listBlueprintRevisionsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listBlueprints(request, options)

listBlueprints(request?: protos.google.cloud.telcoautomation.v1.IListBlueprintsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IBlueprint[],
        protos.google.cloud.telcoautomation.v1.IListBlueprintsRequest | null,
        protos.google.cloud.telcoautomation.v1.IListBlueprintsResponse
    ]>;

List all blueprints.

Parameters
NameDescription
request IListBlueprintsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IBlueprint[], protos.google.cloud.telcoautomation.v1.IListBlueprintsRequest | null, protos.google.cloud.telcoautomation.v1.IListBlueprintsResponse ]>

{Promise} - The promise which resolves to an array. The first element of the array is Array of . 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 listBlueprintsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listBlueprints(request, options, callback)

listBlueprints(request: protos.google.cloud.telcoautomation.v1.IListBlueprintsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListBlueprintsRequest, protos.google.cloud.telcoautomation.v1.IListBlueprintsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IBlueprint>): void;
Parameters
NameDescription
request IListBlueprintsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListBlueprintsRequest, protos.google.cloud.telcoautomation.v1.IListBlueprintsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IBlueprint>
Returns
TypeDescription
void

listBlueprints(request, callback)

listBlueprints(request: protos.google.cloud.telcoautomation.v1.IListBlueprintsRequest, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListBlueprintsRequest, protos.google.cloud.telcoautomation.v1.IListBlueprintsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IBlueprint>): void;
Parameters
NameDescription
request IListBlueprintsRequest
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListBlueprintsRequest, protos.google.cloud.telcoautomation.v1.IListBlueprintsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IBlueprint>
Returns
TypeDescription
void

listBlueprintsAsync(request, options)

listBlueprintsAsync(request?: protos.google.cloud.telcoautomation.v1.IListBlueprintsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.telcoautomation.v1.IBlueprint>;

Equivalent to listBlueprints, but returns an iterable object.

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

Parameters
NameDescription
request IListBlueprintsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
AsyncIterable<protos.google.cloud.telcoautomation.v1.IBlueprint>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing . 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 for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of parent orchestration cluster resource.
   *  Format should be -
   *  "projects/{project_id}/locations/{location_name}/orchestrationClusters/{orchestration_cluster}".
   */
  // const parent = 'abc123'
  /**
   *  Optional. Filtering only supports equality on blueprint state.
   *  It should be in the form: "state = DRAFT". `OR` operator can be used to
   *  get response for multiple states. e.g. "state = DRAFT OR state = PROPOSED".
   */
  // const filter = 'abc123'
  /**
   *  Optional. The maximum number of blueprints to return per page.
   */
  // const pageSize = 1234
  /**
   *  Optional. The page token, received from a previous ListBlueprints call.
   *  It can be provided to retrieve the subsequent page.
   */
  // const pageToken = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

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

  callListBlueprints();

listBlueprintsStream(request, options)

listBlueprintsStream(request?: protos.google.cloud.telcoautomation.v1.IListBlueprintsRequest, options?: CallOptions): Transform;

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

Parameters
NameDescription
request IListBlueprintsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Transform

{Stream} An object stream which emits an object representing 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 listBlueprintsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listDeploymentRevisions(request, options)

listDeploymentRevisions(request?: protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IDeployment[],
        protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsRequest | null,
        protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsResponse
    ]>;

List deployment revisions of a given deployment.

Parameters
NameDescription
request IListDeploymentRevisionsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IDeployment[], protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsRequest | null, protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsResponse ]>

{Promise} - The promise which resolves to an array. The first element of the array is Array of . 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 listDeploymentRevisionsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listDeploymentRevisions(request, options, callback)

listDeploymentRevisions(request: protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsRequest, protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IDeployment>): void;
Parameters
NameDescription
request IListDeploymentRevisionsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsRequest, protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IDeployment>
Returns
TypeDescription
void

listDeploymentRevisions(request, callback)

listDeploymentRevisions(request: protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsRequest, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsRequest, protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IDeployment>): void;
Parameters
NameDescription
request IListDeploymentRevisionsRequest
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsRequest, protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IDeployment>
Returns
TypeDescription
void

listDeploymentRevisionsAsync(request, options)

listDeploymentRevisionsAsync(request?: protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.telcoautomation.v1.IDeployment>;

Equivalent to listDeploymentRevisions, but returns an iterable object.

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

Parameters
NameDescription
request IListDeploymentRevisionsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
AsyncIterable<protos.google.cloud.telcoautomation.v1.IDeployment>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing . 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 for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the deployment to list revisions for.
   */
  // const name = 'abc123'
  /**
   *  Optional. The maximum number of revisions to return per page.
   */
  // const pageSize = 1234
  /**
   *  Optional. The page token, received from a previous ListDeploymentRevisions
   *  call Provide this to retrieve the subsequent page.
   */
  // const pageToken = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

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

  callListDeploymentRevisions();

listDeploymentRevisionsStream(request, options)

listDeploymentRevisionsStream(request?: protos.google.cloud.telcoautomation.v1.IListDeploymentRevisionsRequest, options?: CallOptions): Transform;

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

Parameters
NameDescription
request IListDeploymentRevisionsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Transform

{Stream} An object stream which emits an object representing 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 listDeploymentRevisionsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listDeployments(request, options)

listDeployments(request?: protos.google.cloud.telcoautomation.v1.IListDeploymentsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IDeployment[],
        protos.google.cloud.telcoautomation.v1.IListDeploymentsRequest | null,
        protos.google.cloud.telcoautomation.v1.IListDeploymentsResponse
    ]>;

List all deployments.

Parameters
NameDescription
request IListDeploymentsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IDeployment[], protos.google.cloud.telcoautomation.v1.IListDeploymentsRequest | null, protos.google.cloud.telcoautomation.v1.IListDeploymentsResponse ]>

{Promise} - The promise which resolves to an array. The first element of the array is Array of . 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 listDeploymentsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listDeployments(request, options, callback)

listDeployments(request: protos.google.cloud.telcoautomation.v1.IListDeploymentsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListDeploymentsRequest, protos.google.cloud.telcoautomation.v1.IListDeploymentsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IDeployment>): void;
Parameters
NameDescription
request IListDeploymentsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListDeploymentsRequest, protos.google.cloud.telcoautomation.v1.IListDeploymentsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IDeployment>
Returns
TypeDescription
void

listDeployments(request, callback)

listDeployments(request: protos.google.cloud.telcoautomation.v1.IListDeploymentsRequest, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListDeploymentsRequest, protos.google.cloud.telcoautomation.v1.IListDeploymentsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IDeployment>): void;
Parameters
NameDescription
request IListDeploymentsRequest
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListDeploymentsRequest, protos.google.cloud.telcoautomation.v1.IListDeploymentsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IDeployment>
Returns
TypeDescription
void

listDeploymentsAsync(request, options)

listDeploymentsAsync(request?: protos.google.cloud.telcoautomation.v1.IListDeploymentsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.telcoautomation.v1.IDeployment>;

Equivalent to listDeployments, but returns an iterable object.

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

Parameters
NameDescription
request IListDeploymentsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
AsyncIterable<protos.google.cloud.telcoautomation.v1.IDeployment>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing . 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 for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of parent orchestration cluster resource.
   *  Format should be -
   *  "projects/{project_id}/locations/{location_name}/orchestrationClusters/{orchestration_cluster}".
   */
  // const parent = 'abc123'
  /**
   *  Optional. Filtering only supports equality on deployment state.
   *  It should be in the form: "state = DRAFT". `OR` operator can be used to
   *  get response for multiple states. e.g. "state = DRAFT OR state = APPLIED".
   */
  // const filter = 'abc123'
  /**
   *  Optional. The maximum number of deployments to return per page.
   */
  // const pageSize = 1234
  /**
   *  Optional. The page token, received from a previous ListDeployments call.
   *  It can be provided to retrieve the subsequent page.
   */
  // const pageToken = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

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

  callListDeployments();

listDeploymentsStream(request, options)

listDeploymentsStream(request?: protos.google.cloud.telcoautomation.v1.IListDeploymentsRequest, options?: CallOptions): Transform;

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

Parameters
NameDescription
request IListDeploymentsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Transform

{Stream} An object stream which emits an object representing 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 listDeploymentsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listEdgeSlms(request, options)

listEdgeSlms(request?: protos.google.cloud.telcoautomation.v1.IListEdgeSlmsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IEdgeSlm[],
        protos.google.cloud.telcoautomation.v1.IListEdgeSlmsRequest | null,
        protos.google.cloud.telcoautomation.v1.IListEdgeSlmsResponse
    ]>;

Lists EdgeSlms in a given project and location.

Parameters
NameDescription
request IListEdgeSlmsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IEdgeSlm[], protos.google.cloud.telcoautomation.v1.IListEdgeSlmsRequest | null, protos.google.cloud.telcoautomation.v1.IListEdgeSlmsResponse ]>

{Promise} - The promise which resolves to an array. The first element of the array is Array of . 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 listEdgeSlmsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listEdgeSlms(request, options, callback)

listEdgeSlms(request: protos.google.cloud.telcoautomation.v1.IListEdgeSlmsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListEdgeSlmsRequest, protos.google.cloud.telcoautomation.v1.IListEdgeSlmsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IEdgeSlm>): void;
Parameters
NameDescription
request IListEdgeSlmsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListEdgeSlmsRequest, protos.google.cloud.telcoautomation.v1.IListEdgeSlmsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IEdgeSlm>
Returns
TypeDescription
void

listEdgeSlms(request, callback)

listEdgeSlms(request: protos.google.cloud.telcoautomation.v1.IListEdgeSlmsRequest, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListEdgeSlmsRequest, protos.google.cloud.telcoautomation.v1.IListEdgeSlmsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IEdgeSlm>): void;
Parameters
NameDescription
request IListEdgeSlmsRequest
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListEdgeSlmsRequest, protos.google.cloud.telcoautomation.v1.IListEdgeSlmsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IEdgeSlm>
Returns
TypeDescription
void

listEdgeSlmsAsync(request, options)

listEdgeSlmsAsync(request?: protos.google.cloud.telcoautomation.v1.IListEdgeSlmsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.telcoautomation.v1.IEdgeSlm>;

Equivalent to listEdgeSlms, but returns an iterable object.

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

Parameters
NameDescription
request IListEdgeSlmsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
AsyncIterable<protos.google.cloud.telcoautomation.v1.IEdgeSlm>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing . 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 for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Parent value for ListEdgeSlmsRequest
   */
  // const parent = 'abc123'
  /**
   *  Requested page size. Server may return fewer items than requested.
   *  If unspecified, server will pick an appropriate default.
   */
  // const pageSize = 1234
  /**
   *  A token identifying a page of results the server should return.
   */
  // const pageToken = 'abc123'
  /**
   *  Filtering results
   */
  // const filter = 'abc123'
  /**
   *  Hint for how to order the results
   */
  // const orderBy = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

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

  callListEdgeSlms();

listEdgeSlmsStream(request, options)

listEdgeSlmsStream(request?: protos.google.cloud.telcoautomation.v1.IListEdgeSlmsRequest, options?: CallOptions): Transform;

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

Parameters
NameDescription
request IListEdgeSlmsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Transform

{Stream} An object stream which emits an object representing 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 listEdgeSlmsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listHydratedDeployments(request, options)

listHydratedDeployments(request?: protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IHydratedDeployment[],
        protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsRequest | null,
        protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsResponse
    ]>;

List all hydrated deployments present under a deployment.

Parameters
NameDescription
request IListHydratedDeploymentsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IHydratedDeployment[], protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsRequest | null, protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsResponse ]>

{Promise} - The promise which resolves to an array. The first element of the array is Array of . 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 listHydratedDeploymentsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listHydratedDeployments(request, options, callback)

listHydratedDeployments(request: protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsRequest, protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IHydratedDeployment>): void;
Parameters
NameDescription
request IListHydratedDeploymentsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsRequest, protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IHydratedDeployment>
Returns
TypeDescription
void

listHydratedDeployments(request, callback)

listHydratedDeployments(request: protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsRequest, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsRequest, protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IHydratedDeployment>): void;
Parameters
NameDescription
request IListHydratedDeploymentsRequest
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsRequest, protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IHydratedDeployment>
Returns
TypeDescription
void

listHydratedDeploymentsAsync(request, options)

listHydratedDeploymentsAsync(request?: protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.telcoautomation.v1.IHydratedDeployment>;

Equivalent to listHydratedDeployments, but returns an iterable object.

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

Parameters
NameDescription
request IListHydratedDeploymentsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
AsyncIterable<protos.google.cloud.telcoautomation.v1.IHydratedDeployment>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing . 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 for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The deployment managing the hydrated deployments.
   */
  // const parent = 'abc123'
  /**
   *  Optional. The maximum number of hydrated deployments to return. The service
   *  may return fewer than this value. If unspecified, at most 50 hydrated
   *  deployments will be returned. The maximum value is 1000. Values above 1000
   *  will be set to 1000.
   */
  // const pageSize = 1234
  /**
   *  Optional. The page token, received from a previous ListHydratedDeployments
   *  call. Provide this to retrieve the subsequent page.
   */
  // const pageToken = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

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

  callListHydratedDeployments();

listHydratedDeploymentsStream(request, options)

listHydratedDeploymentsStream(request?: protos.google.cloud.telcoautomation.v1.IListHydratedDeploymentsRequest, options?: CallOptions): Transform;

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

Parameters
NameDescription
request IListHydratedDeploymentsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Transform

{Stream} An object stream which emits an object representing 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 listHydratedDeploymentsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listLocationsAsync(request, options)

listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;

Lists information about the supported locations for this service. Returns an iterable object.

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

Parameters
NameDescription
request LocationProtos.google.cloud.location.IListLocationsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
AsyncIterable<google.cloud.location.ILocation>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing . 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 for more details and examples.

Example

const iterable = client.listLocationsAsync(request);
for await (const response of iterable) {
  // process response
}

listOperationsAsync(request, options)

listOperationsAsync(request: protos.google.longrunning.ListOperationsRequest, options?: gax.CallOptions): AsyncIterable<protos.google.longrunning.ListOperationsResponse>;

Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns UNIMPLEMENTED. Returns an iterable object.

For-await-of syntax is used with the iterable to recursively get response element on-demand.

Parameters
NameDescription
request ListOperationsRequest

The request object that will be sent.

options CallOptions

Optional parameters. You can override the default settings for this call, e.g, timeout, retries, paginations, etc. See gax.CallOptions for the details.

Returns
TypeDescription
AsyncIterable<protos.google.longrunning.ListOperationsResponse>

{Object} An iterable Object that conforms to iteration protocols.

Example

const client = longrunning.operationsClient();
for await (const response of client.listOperationsAsync(request));
// doThingsWith(response)

listOrchestrationClusters(request, options)

listOrchestrationClusters(request?: protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IOrchestrationCluster[],
        protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersRequest | null,
        protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersResponse
    ]>;

Lists OrchestrationClusters in a given project and location.

Parameters
NameDescription
request IListOrchestrationClustersRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IOrchestrationCluster[], protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersRequest | null, protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersResponse ]>

{Promise} - The promise which resolves to an array. The first element of the array is Array of . 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 listOrchestrationClustersAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listOrchestrationClusters(request, options, callback)

listOrchestrationClusters(request: protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersRequest, protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IOrchestrationCluster>): void;
Parameters
NameDescription
request IListOrchestrationClustersRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersRequest, protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IOrchestrationCluster>
Returns
TypeDescription
void

listOrchestrationClusters(request, callback)

listOrchestrationClusters(request: protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersRequest, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersRequest, protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IOrchestrationCluster>): void;
Parameters
NameDescription
request IListOrchestrationClustersRequest
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersRequest, protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IOrchestrationCluster>
Returns
TypeDescription
void

listOrchestrationClustersAsync(request, options)

listOrchestrationClustersAsync(request?: protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.telcoautomation.v1.IOrchestrationCluster>;

Equivalent to listOrchestrationClusters, but returns an iterable object.

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

Parameters
NameDescription
request IListOrchestrationClustersRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
AsyncIterable<protos.google.cloud.telcoautomation.v1.IOrchestrationCluster>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing . 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 for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Parent value for ListOrchestrationClustersRequest
   */
  // const parent = 'abc123'
  /**
   *  Requested page size. Server may return fewer items than requested.
   *  If unspecified, server will pick an appropriate default.
   */
  // const pageSize = 1234
  /**
   *  A token identifying a page of results the server should return.
   */
  // const pageToken = 'abc123'
  /**
   *  Filtering results.
   */
  // const filter = 'abc123'
  /**
   *  Hint for how to order the results.
   */
  // const orderBy = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

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

  callListOrchestrationClusters();

listOrchestrationClustersStream(request, options)

listOrchestrationClustersStream(request?: protos.google.cloud.telcoautomation.v1.IListOrchestrationClustersRequest, options?: CallOptions): Transform;

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

Parameters
NameDescription
request IListOrchestrationClustersRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Transform

{Stream} An object stream which emits an object representing 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 listOrchestrationClustersAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listPublicBlueprints(request, options)

listPublicBlueprints(request?: protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IPublicBlueprint[],
        protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsRequest | null,
        protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsResponse
    ]>;

Lists the blueprints in TNA's public catalog. Default page size = 20, Max Page Size = 100.

Parameters
NameDescription
request IListPublicBlueprintsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IPublicBlueprint[], protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsRequest | null, protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsResponse ]>

{Promise} - The promise which resolves to an array. The first element of the array is Array of PublicBlueprint. 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 listPublicBlueprintsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listPublicBlueprints(request, options, callback)

listPublicBlueprints(request: protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsRequest, protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IPublicBlueprint>): void;
Parameters
NameDescription
request IListPublicBlueprintsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsRequest, protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IPublicBlueprint>
Returns
TypeDescription
void

listPublicBlueprints(request, callback)

listPublicBlueprints(request: protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsRequest, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsRequest, protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IPublicBlueprint>): void;
Parameters
NameDescription
request IListPublicBlueprintsRequest
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsRequest, protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IPublicBlueprint>
Returns
TypeDescription
void

listPublicBlueprintsAsync(request, options)

listPublicBlueprintsAsync(request?: protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.telcoautomation.v1.IPublicBlueprint>;

Equivalent to listPublicBlueprints, but returns an iterable object.

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

Parameters
NameDescription
request IListPublicBlueprintsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
AsyncIterable<protos.google.cloud.telcoautomation.v1.IPublicBlueprint>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing PublicBlueprint. 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 for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Parent value of public blueprint.
   *  Format should be -
   *  "projects/{project_id}/locations/{location_name}".
   */
  // const parent = 'abc123'
  /**
   *  Optional. Requested page size. Server may return fewer items than
   *  requested. If unspecified, server will pick an appropriate default.
   */
  // const pageSize = 1234
  /**
   *  Optional. A token identifying a page of results the server should return.
   */
  // const pageToken = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

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

  callListPublicBlueprints();

listPublicBlueprintsStream(request, options)

listPublicBlueprintsStream(request?: protos.google.cloud.telcoautomation.v1.IListPublicBlueprintsRequest, options?: CallOptions): Transform;

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

Parameters
NameDescription
request IListPublicBlueprintsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Transform

{Stream} An object stream which emits an object representing PublicBlueprint 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 listPublicBlueprintsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

locationPath(project, location)

locationPath(project: string, location: string): string;

Return a fully-qualified location resource name string.

Parameters
NameDescription
project string
location string
Returns
TypeDescription
string

{string} Resource name string.

matchBlueprintFromBlueprintName(blueprintName)

matchBlueprintFromBlueprintName(blueprintName: string): string | number;

Parse the blueprint from Blueprint resource.

Parameter
NameDescription
blueprintName string

A fully-qualified path representing Blueprint resource.

Returns
TypeDescription
string | number

{string} A string representing the blueprint.

matchDeploymentFromDeploymentName(deploymentName)

matchDeploymentFromDeploymentName(deploymentName: string): string | number;

Parse the deployment from Deployment resource.

Parameter
NameDescription
deploymentName string

A fully-qualified path representing Deployment resource.

Returns
TypeDescription
string | number

{string} A string representing the deployment.

matchDeploymentFromHydratedDeploymentName(hydratedDeploymentName)

matchDeploymentFromHydratedDeploymentName(hydratedDeploymentName: string): string | number;

Parse the deployment from HydratedDeployment resource.

Parameter
NameDescription
hydratedDeploymentName string

A fully-qualified path representing HydratedDeployment resource.

Returns
TypeDescription
string | number

{string} A string representing the deployment.

matchEdgeSlmFromEdgeSlmName(edgeSlmName)

matchEdgeSlmFromEdgeSlmName(edgeSlmName: string): string | number;

Parse the edge_slm from EdgeSlm resource.

Parameter
NameDescription
edgeSlmName string

A fully-qualified path representing EdgeSlm resource.

Returns
TypeDescription
string | number

{string} A string representing the edge_slm.

matchHydratedDeploymentFromHydratedDeploymentName(hydratedDeploymentName)

matchHydratedDeploymentFromHydratedDeploymentName(hydratedDeploymentName: string): string | number;

Parse the hydrated_deployment from HydratedDeployment resource.

Parameter
NameDescription
hydratedDeploymentName string

A fully-qualified path representing HydratedDeployment resource.

Returns
TypeDescription
string | number

{string} A string representing the hydrated_deployment.

matchLocationFromBlueprintName(blueprintName)

matchLocationFromBlueprintName(blueprintName: string): string | number;

Parse the location from Blueprint resource.

Parameter
NameDescription
blueprintName string

A fully-qualified path representing Blueprint resource.

Returns
TypeDescription
string | number

{string} A string representing the location.

matchLocationFromDeploymentName(deploymentName)

matchLocationFromDeploymentName(deploymentName: string): string | number;

Parse the location from Deployment resource.

Parameter
NameDescription
deploymentName string

A fully-qualified path representing Deployment resource.

Returns
TypeDescription
string | number

{string} A string representing the location.

matchLocationFromEdgeSlmName(edgeSlmName)

matchLocationFromEdgeSlmName(edgeSlmName: string): string | number;

Parse the location from EdgeSlm resource.

Parameter
NameDescription
edgeSlmName string

A fully-qualified path representing EdgeSlm resource.

Returns
TypeDescription
string | number

{string} A string representing the location.

matchLocationFromHydratedDeploymentName(hydratedDeploymentName)

matchLocationFromHydratedDeploymentName(hydratedDeploymentName: string): string | number;

Parse the location from HydratedDeployment resource.

Parameter
NameDescription
hydratedDeploymentName string

A fully-qualified path representing HydratedDeployment resource.

Returns
TypeDescription
string | number

{string} A string representing the location.

matchLocationFromLocationName(locationName)

matchLocationFromLocationName(locationName: string): string | number;

Parse the location from Location resource.

Parameter
NameDescription
locationName string

A fully-qualified path representing Location resource.

Returns
TypeDescription
string | number

{string} A string representing the location.

matchLocationFromOrchestrationClusterName(orchestrationClusterName)

matchLocationFromOrchestrationClusterName(orchestrationClusterName: string): string | number;

Parse the location from OrchestrationCluster resource.

Parameter
NameDescription
orchestrationClusterName string

A fully-qualified path representing OrchestrationCluster resource.

Returns
TypeDescription
string | number

{string} A string representing the location.

matchLocationFromPublicBlueprintName(publicBlueprintName)

matchLocationFromPublicBlueprintName(publicBlueprintName: string): string | number;

Parse the location from PublicBlueprint resource.

Parameter
NameDescription
publicBlueprintName string

A fully-qualified path representing PublicBlueprint resource.

Returns
TypeDescription
string | number

{string} A string representing the location.

matchOrchestrationClusterFromBlueprintName(blueprintName)

matchOrchestrationClusterFromBlueprintName(blueprintName: string): string | number;

Parse the orchestration_cluster from Blueprint resource.

Parameter
NameDescription
blueprintName string

A fully-qualified path representing Blueprint resource.

Returns
TypeDescription
string | number

{string} A string representing the orchestration_cluster.

matchOrchestrationClusterFromDeploymentName(deploymentName)

matchOrchestrationClusterFromDeploymentName(deploymentName: string): string | number;

Parse the orchestration_cluster from Deployment resource.

Parameter
NameDescription
deploymentName string

A fully-qualified path representing Deployment resource.

Returns
TypeDescription
string | number

{string} A string representing the orchestration_cluster.

matchOrchestrationClusterFromHydratedDeploymentName(hydratedDeploymentName)

matchOrchestrationClusterFromHydratedDeploymentName(hydratedDeploymentName: string): string | number;

Parse the orchestration_cluster from HydratedDeployment resource.

Parameter
NameDescription
hydratedDeploymentName string

A fully-qualified path representing HydratedDeployment resource.

Returns
TypeDescription
string | number

{string} A string representing the orchestration_cluster.

matchOrchestrationClusterFromOrchestrationClusterName(orchestrationClusterName)

matchOrchestrationClusterFromOrchestrationClusterName(orchestrationClusterName: string): string | number;

Parse the orchestration_cluster from OrchestrationCluster resource.

Parameter
NameDescription
orchestrationClusterName string

A fully-qualified path representing OrchestrationCluster resource.

Returns
TypeDescription
string | number

{string} A string representing the orchestration_cluster.

matchProjectFromBlueprintName(blueprintName)

matchProjectFromBlueprintName(blueprintName: string): string | number;

Parse the project from Blueprint resource.

Parameter
NameDescription
blueprintName string

A fully-qualified path representing Blueprint resource.

Returns
TypeDescription
string | number

{string} A string representing the project.

matchProjectFromDeploymentName(deploymentName)

matchProjectFromDeploymentName(deploymentName: string): string | number;

Parse the project from Deployment resource.

Parameter
NameDescription
deploymentName string

A fully-qualified path representing Deployment resource.

Returns
TypeDescription
string | number

{string} A string representing the project.

matchProjectFromEdgeSlmName(edgeSlmName)

matchProjectFromEdgeSlmName(edgeSlmName: string): string | number;

Parse the project from EdgeSlm resource.

Parameter
NameDescription
edgeSlmName string

A fully-qualified path representing EdgeSlm resource.

Returns
TypeDescription
string | number

{string} A string representing the project.

matchProjectFromHydratedDeploymentName(hydratedDeploymentName)

matchProjectFromHydratedDeploymentName(hydratedDeploymentName: string): string | number;

Parse the project from HydratedDeployment resource.

Parameter
NameDescription
hydratedDeploymentName string

A fully-qualified path representing HydratedDeployment resource.

Returns
TypeDescription
string | number

{string} A string representing the project.

matchProjectFromLocationName(locationName)

matchProjectFromLocationName(locationName: string): string | number;

Parse the project from Location resource.

Parameter
NameDescription
locationName string

A fully-qualified path representing Location resource.

Returns
TypeDescription
string | number

{string} A string representing the project.

matchProjectFromOrchestrationClusterName(orchestrationClusterName)

matchProjectFromOrchestrationClusterName(orchestrationClusterName: string): string | number;

Parse the project from OrchestrationCluster resource.

Parameter
NameDescription
orchestrationClusterName string

A fully-qualified path representing OrchestrationCluster resource.

Returns
TypeDescription
string | number

{string} A string representing the project.

matchProjectFromProjectName(projectName)

matchProjectFromProjectName(projectName: string): string | number;

Parse the project from Project resource.

Parameter
NameDescription
projectName string

A fully-qualified path representing Project resource.

Returns
TypeDescription
string | number

{string} A string representing the project.

matchProjectFromPublicBlueprintName(publicBlueprintName)

matchProjectFromPublicBlueprintName(publicBlueprintName: string): string | number;

Parse the project from PublicBlueprint resource.

Parameter
NameDescription
publicBlueprintName string

A fully-qualified path representing PublicBlueprint resource.

Returns
TypeDescription
string | number

{string} A string representing the project.

matchPublicLueprintFromPublicBlueprintName(publicBlueprintName)

matchPublicLueprintFromPublicBlueprintName(publicBlueprintName: string): string | number;

Parse the public_lueprint from PublicBlueprint resource.

Parameter
NameDescription
publicBlueprintName string

A fully-qualified path representing PublicBlueprint resource.

Returns
TypeDescription
string | number

{string} A string representing the public_lueprint.

orchestrationClusterPath(project, location, orchestrationCluster)

orchestrationClusterPath(project: string, location: string, orchestrationCluster: string): string;

Return a fully-qualified orchestrationCluster resource name string.

Parameters
NameDescription
project string
location string
orchestrationCluster string
Returns
TypeDescription
string

{string} Resource name string.

projectPath(project)

projectPath(project: string): string;

Return a fully-qualified project resource name string.

Parameter
NameDescription
project string
Returns
TypeDescription
string

{string} Resource name string.

proposeBlueprint(request, options)

proposeBlueprint(request?: protos.google.cloud.telcoautomation.v1.IProposeBlueprintRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IBlueprint,
        (protos.google.cloud.telcoautomation.v1.IProposeBlueprintRequest | undefined),
        {} | undefined
    ]>;

Proposes a blueprint for approval of changes.

Parameters
NameDescription
request IProposeBlueprintRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IBlueprint, (protos.google.cloud.telcoautomation.v1.IProposeBlueprintRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the blueprint being proposed.
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.proposeBlueprint(request);
    console.log(response);
  }

  callProposeBlueprint();

proposeBlueprint(request, options, callback)

proposeBlueprint(request: protos.google.cloud.telcoautomation.v1.IProposeBlueprintRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IProposeBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IProposeBlueprintRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IProposeBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

proposeBlueprint(request, callback)

proposeBlueprint(request: protos.google.cloud.telcoautomation.v1.IProposeBlueprintRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IProposeBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IProposeBlueprintRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IProposeBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

publicBlueprintPath(project, location, publicLueprint)

publicBlueprintPath(project: string, location: string, publicLueprint: string): string;

Return a fully-qualified publicBlueprint resource name string.

Parameters
NameDescription
project string
location string
publicLueprint string
Returns
TypeDescription
string

{string} Resource name string.

rejectBlueprint(request, options)

rejectBlueprint(request?: protos.google.cloud.telcoautomation.v1.IRejectBlueprintRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IBlueprint,
        (protos.google.cloud.telcoautomation.v1.IRejectBlueprintRequest | undefined),
        {} | undefined
    ]>;

Rejects a blueprint revision proposal and flips it back to Draft state.

Parameters
NameDescription
request IRejectBlueprintRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IBlueprint, (protos.google.cloud.telcoautomation.v1.IRejectBlueprintRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of the blueprint being rejected.
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.rejectBlueprint(request);
    console.log(response);
  }

  callRejectBlueprint();

rejectBlueprint(request, options, callback)

rejectBlueprint(request: protos.google.cloud.telcoautomation.v1.IRejectBlueprintRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IRejectBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IRejectBlueprintRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IRejectBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

rejectBlueprint(request, callback)

rejectBlueprint(request: protos.google.cloud.telcoautomation.v1.IRejectBlueprintRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IRejectBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IRejectBlueprintRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IRejectBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

removeDeployment(request, options)

removeDeployment(request?: protos.google.cloud.telcoautomation.v1.IRemoveDeploymentRequest, options?: CallOptions): Promise<[
        protos.google.protobuf.IEmpty,
        (protos.google.cloud.telcoautomation.v1.IRemoveDeploymentRequest | undefined),
        {} | undefined
    ]>;

Removes the deployment by marking it as DELETING. Post which deployment and it's revisions gets deleted.

Parameters
NameDescription
request IRemoveDeploymentRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.protobuf.IEmpty, (protos.google.cloud.telcoautomation.v1.IRemoveDeploymentRequest | 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 for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of deployment to initiate delete.
   */
  // const name = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.removeDeployment(request);
    console.log(response);
  }

  callRemoveDeployment();

removeDeployment(request, options, callback)

removeDeployment(request: protos.google.cloud.telcoautomation.v1.IRemoveDeploymentRequest, options: CallOptions, callback: Callback<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IRemoveDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IRemoveDeploymentRequest
options CallOptions
callback Callback<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IRemoveDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

removeDeployment(request, callback)

removeDeployment(request: protos.google.cloud.telcoautomation.v1.IRemoveDeploymentRequest, callback: Callback<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IRemoveDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IRemoveDeploymentRequest
callback Callback<protos.google.protobuf.IEmpty, protos.google.cloud.telcoautomation.v1.IRemoveDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

rollbackDeployment(request, options)

rollbackDeployment(request?: protos.google.cloud.telcoautomation.v1.IRollbackDeploymentRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IDeployment,
        (protos.google.cloud.telcoautomation.v1.IRollbackDeploymentRequest | undefined),
        {} | undefined
    ]>;

Rollback the active deployment to the given past approved deployment revision.

Parameters
NameDescription
request IRollbackDeploymentRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IDeployment, (protos.google.cloud.telcoautomation.v1.IRollbackDeploymentRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. Name of the deployment.
   */
  // const name = 'abc123'
  /**
   *  Required. The revision id of deployment to roll back to.
   */
  // const revisionId = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

    // Run request
    const response = await telcoautomationClient.rollbackDeployment(request);
    console.log(response);
  }

  callRollbackDeployment();

rollbackDeployment(request, options, callback)

rollbackDeployment(request: protos.google.cloud.telcoautomation.v1.IRollbackDeploymentRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IRollbackDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IRollbackDeploymentRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IRollbackDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

rollbackDeployment(request, callback)

rollbackDeployment(request: protos.google.cloud.telcoautomation.v1.IRollbackDeploymentRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IRollbackDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IRollbackDeploymentRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IRollbackDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

searchBlueprintRevisions(request, options)

searchBlueprintRevisions(request?: protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IBlueprint[],
        protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsRequest | null,
        protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsResponse
    ]>;

Searches across blueprint revisions.

Parameters
NameDescription
request ISearchBlueprintRevisionsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IBlueprint[], protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsRequest | null, protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsResponse ]>

{Promise} - The promise which resolves to an array. The first element of the array is Array of . 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 searchBlueprintRevisionsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

searchBlueprintRevisions(request, options, callback)

searchBlueprintRevisions(request: protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsRequest, protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IBlueprint>): void;
Parameters
NameDescription
request ISearchBlueprintRevisionsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsRequest, protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IBlueprint>
Returns
TypeDescription
void

searchBlueprintRevisions(request, callback)

searchBlueprintRevisions(request: protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsRequest, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsRequest, protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IBlueprint>): void;
Parameters
NameDescription
request ISearchBlueprintRevisionsRequest
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsRequest, protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IBlueprint>
Returns
TypeDescription
void

searchBlueprintRevisionsAsync(request, options)

searchBlueprintRevisionsAsync(request?: protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.telcoautomation.v1.IBlueprint>;

Equivalent to searchBlueprintRevisions, but returns an iterable object.

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

Parameters
NameDescription
request ISearchBlueprintRevisionsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
AsyncIterable<protos.google.cloud.telcoautomation.v1.IBlueprint>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing . 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 for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of parent orchestration cluster resource.
   *  Format should be -
   *  "projects/{project_id}/locations/{location_name}/orchestrationClusters/{orchestration_cluster}".
   */
  // const parent = 'abc123'
  /**
   *  Required. Supported queries:
   *  1. ""                       : Lists all revisions across all blueprints.
   *  2. "latest=true"            : Lists latest revisions across all blueprints.
   *  3. "name={name}"            : Lists all revisions of blueprint with name
   *  {name}.
   *  4. "name={name} latest=true": Lists latest revision of blueprint with name
   *  {name}
   */
  // const query = 'abc123'
  /**
   *  Optional. The maximum number of blueprints revisions to return per page.
   *  max page size = 100, default page size = 20.
   */
  // const pageSize = 1234
  /**
   *  Optional. The page token, received from a previous search call.
   *  It can be provided to retrieve the subsequent page.
   */
  // const pageToken = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

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

  callSearchBlueprintRevisions();

searchBlueprintRevisionsStream(request, options)

searchBlueprintRevisionsStream(request?: protos.google.cloud.telcoautomation.v1.ISearchBlueprintRevisionsRequest, options?: CallOptions): Transform;

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

Parameters
NameDescription
request ISearchBlueprintRevisionsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Transform

{Stream} An object stream which emits an object representing 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 searchBlueprintRevisionsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

searchDeploymentRevisions(request, options)

searchDeploymentRevisions(request?: protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IDeployment[],
        protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsRequest | null,
        protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsResponse
    ]>;

Searches across deployment revisions.

Parameters
NameDescription
request ISearchDeploymentRevisionsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IDeployment[], protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsRequest | null, protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsResponse ]>

{Promise} - The promise which resolves to an array. The first element of the array is Array of . 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 searchDeploymentRevisionsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

searchDeploymentRevisions(request, options, callback)

searchDeploymentRevisions(request: protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsRequest, protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IDeployment>): void;
Parameters
NameDescription
request ISearchDeploymentRevisionsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsRequest, protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IDeployment>
Returns
TypeDescription
void

searchDeploymentRevisions(request, callback)

searchDeploymentRevisions(request: protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsRequest, callback: PaginationCallback<protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsRequest, protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IDeployment>): void;
Parameters
NameDescription
request ISearchDeploymentRevisionsRequest
callback PaginationCallback<protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsRequest, protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsResponse | null | undefined, protos.google.cloud.telcoautomation.v1.IDeployment>
Returns
TypeDescription
void

searchDeploymentRevisionsAsync(request, options)

searchDeploymentRevisionsAsync(request?: protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.telcoautomation.v1.IDeployment>;

Equivalent to searchDeploymentRevisions, but returns an iterable object.

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

Parameters
NameDescription
request ISearchDeploymentRevisionsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
AsyncIterable<protos.google.cloud.telcoautomation.v1.IDeployment>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing . 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 for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The name of parent orchestration cluster resource.
   *  Format should be -
   *  "projects/{project_id}/locations/{location_name}/orchestrationClusters/{orchestration_cluster}".
   */
  // const parent = 'abc123'
  /**
   *  Required. Supported queries:
   *  1. ""                       : Lists all revisions across all deployments.
   *  2. "latest=true"            : Lists latest revisions across all
   *  deployments.
   *  3. "name={name}"            : Lists all revisions of deployment with name
   *  {name}.
   *  4. "name={name} latest=true": Lists latest revision of deployment with name
   *  {name}
   */
  // const query = 'abc123'
  /**
   *  Optional. The maximum number of deployment revisions to return per page.
   *  max page size = 100, default page size = 20.
   */
  // const pageSize = 1234
  /**
   *  Optional. The page token, received from a previous search call.
   *  It can be provided to retrieve the subsequent page.
   */
  // const pageToken = 'abc123'

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

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

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

  callSearchDeploymentRevisions();

searchDeploymentRevisionsStream(request, options)

searchDeploymentRevisionsStream(request?: protos.google.cloud.telcoautomation.v1.ISearchDeploymentRevisionsRequest, options?: CallOptions): Transform;

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

Parameters
NameDescription
request ISearchDeploymentRevisionsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Transform

{Stream} An object stream which emits an object representing 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 searchDeploymentRevisionsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

updateBlueprint(request, options)

updateBlueprint(request?: protos.google.cloud.telcoautomation.v1.IUpdateBlueprintRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IBlueprint,
        (protos.google.cloud.telcoautomation.v1.IUpdateBlueprintRequest | undefined),
        {} | undefined
    ]>;

Updates a blueprint.

Parameters
NameDescription
request IUpdateBlueprintRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IBlueprint, (protos.google.cloud.telcoautomation.v1.IUpdateBlueprintRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The `blueprint` to update.
   */
  // const blueprint = {}
  /**
   *  Required. Update mask is used to specify the fields to be overwritten in
   *  the `blueprint` resource by the update.
   */
  // const updateMask = {}

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

  async function callUpdateBlueprint() {
    // Construct request
    const request = {
      blueprint,
      updateMask,
    };

    // Run request
    const response = await telcoautomationClient.updateBlueprint(request);
    console.log(response);
  }

  callUpdateBlueprint();

updateBlueprint(request, options, callback)

updateBlueprint(request: protos.google.cloud.telcoautomation.v1.IUpdateBlueprintRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IUpdateBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IUpdateBlueprintRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IUpdateBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

updateBlueprint(request, callback)

updateBlueprint(request: protos.google.cloud.telcoautomation.v1.IUpdateBlueprintRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IUpdateBlueprintRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IUpdateBlueprintRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IBlueprint, protos.google.cloud.telcoautomation.v1.IUpdateBlueprintRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

updateDeployment(request, options)

updateDeployment(request?: protos.google.cloud.telcoautomation.v1.IUpdateDeploymentRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IDeployment,
        (protos.google.cloud.telcoautomation.v1.IUpdateDeploymentRequest | undefined),
        {} | undefined
    ]>;

Updates a deployment.

Parameters
NameDescription
request IUpdateDeploymentRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IDeployment, (protos.google.cloud.telcoautomation.v1.IUpdateDeploymentRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The `deployment` to update.
   */
  // const deployment = {}
  /**
   *  Required. Update mask is used to specify the fields to be overwritten in
   *  the `deployment` resource by the update.
   */
  // const updateMask = {}

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

  async function callUpdateDeployment() {
    // Construct request
    const request = {
      deployment,
      updateMask,
    };

    // Run request
    const response = await telcoautomationClient.updateDeployment(request);
    console.log(response);
  }

  callUpdateDeployment();

updateDeployment(request, options, callback)

updateDeployment(request: protos.google.cloud.telcoautomation.v1.IUpdateDeploymentRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IUpdateDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IUpdateDeploymentRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IUpdateDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

updateDeployment(request, callback)

updateDeployment(request: protos.google.cloud.telcoautomation.v1.IUpdateDeploymentRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IUpdateDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IUpdateDeploymentRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IDeployment, protos.google.cloud.telcoautomation.v1.IUpdateDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

updateHydratedDeployment(request, options)

updateHydratedDeployment(request?: protos.google.cloud.telcoautomation.v1.IUpdateHydratedDeploymentRequest, options?: CallOptions): Promise<[
        protos.google.cloud.telcoautomation.v1.IHydratedDeployment,
        (protos.google.cloud.telcoautomation.v1.IUpdateHydratedDeploymentRequest | undefined),
        {} | undefined
    ]>;

Updates a hydrated deployment.

Parameters
NameDescription
request IUpdateHydratedDeploymentRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
TypeDescription
Promise<[ protos.google.cloud.telcoautomation.v1.IHydratedDeployment, (protos.google.cloud.telcoautomation.v1.IUpdateHydratedDeploymentRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.

Example

  /**
   * This snippet has been automatically generated and should be regarded as a code template only.
   * It will require modifications to work.
   * It may require correct/in-range values for request initialization.
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The hydrated deployment to update.
   */
  // const hydratedDeployment = {}
  /**
   *  Required. The list of fields to update. Update mask supports a special
   *  value `*` which fully replaces (equivalent to PUT) the resource provided.
   */
  // const updateMask = {}

  // Imports the Telcoautomation library
  const {TelcoAutomationClient} = require('@google-cloud/telcoautomation').v1;

  // Instantiates a client
  const telcoautomationClient = new TelcoAutomationClient();

  async function callUpdateHydratedDeployment() {
    // Construct request
    const request = {
      hydratedDeployment,
      updateMask,
    };

    // Run request
    const response = await telcoautomationClient.updateHydratedDeployment(request);
    console.log(response);
  }

  callUpdateHydratedDeployment();

updateHydratedDeployment(request, options, callback)

updateHydratedDeployment(request: protos.google.cloud.telcoautomation.v1.IUpdateHydratedDeploymentRequest, options: CallOptions, callback: Callback<protos.google.cloud.telcoautomation.v1.IHydratedDeployment, protos.google.cloud.telcoautomation.v1.IUpdateHydratedDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IUpdateHydratedDeploymentRequest
options CallOptions
callback Callback<protos.google.cloud.telcoautomation.v1.IHydratedDeployment, protos.google.cloud.telcoautomation.v1.IUpdateHydratedDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void

updateHydratedDeployment(request, callback)

updateHydratedDeployment(request: protos.google.cloud.telcoautomation.v1.IUpdateHydratedDeploymentRequest, callback: Callback<protos.google.cloud.telcoautomation.v1.IHydratedDeployment, protos.google.cloud.telcoautomation.v1.IUpdateHydratedDeploymentRequest | null | undefined, {} | null | undefined>): void;
Parameters
NameDescription
request IUpdateHydratedDeploymentRequest
callback Callback<protos.google.cloud.telcoautomation.v1.IHydratedDeployment, protos.google.cloud.telcoautomation.v1.IUpdateHydratedDeploymentRequest | null | undefined, {} | null | undefined>
Returns
TypeDescription
void