Class v1.VideoStitcherServiceClient (2.4.0)

Video-On-Demand content stitching API allows you to insert ads into (VoD) video on demand files. You will be able to render custom scrubber bars with highlighted ads, enforce ad policies, allow seamless playback and tracking on native players and monetize content with any standard VMAP compliant ad server. v1

Package

@google-cloud/video-stitcher

Constructors

(constructor)(opts, gaxInstance)

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

Construct an instance of VideoStitcherServiceClient.

Parameters
Name Description
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 VideoStitcherServiceClient({fallback: true}, gax); ```

Properties

apiEndpoint

get apiEndpoint(): string;

The DNS address for this API service.

apiEndpoint

static get apiEndpoint(): string;

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

auth

auth: gax.GoogleAuth;

descriptors

descriptors: Descriptors;

innerApiCalls

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

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

static get servicePath(): string;

The DNS address for this API service.

universeDomain

get universeDomain(): string;

videoStitcherServiceStub

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

warn

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

Methods

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
Name Description
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
Type Description
Promise<protos.google.protobuf.Empty>
Example

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

cdnKeyPath(project, location, cdnKey)

cdnKeyPath(project: string, location: string, cdnKey: string): string;

Return a fully-qualified cdnKey resource name string.

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

{string} Resource name string.

checkCreateCdnKeyProgress(name)

checkCreateCdnKeyProgress(name: string): Promise<LROperation<protos.google.cloud.video.stitcher.v1.CdnKey, protos.google.cloud.video.stitcher.v1.OperationMetadata>>;

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

Parameter
Name Description
name string

The operation name that will be passed.

Returns
Type Description
Promise<LROperation<protos.google.cloud.video.stitcher.v1.CdnKey, protos.google.cloud.video.stitcher.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. The project in which the CDN key should be created, in the form
   *  of `projects/{project_number}/locations/{location}`.
   */
  // const parent = 'abc123'
  /**
   *  Required. The CDN key resource to create.
   */
  // const cdnKey = {}
  /**
   *  Required. The ID to use for the CDN key, which will become the final
   *  component of the CDN key's resource name.
   *  This value should conform to RFC-1034, which restricts to
   *  lower-case letters, numbers, and hyphen, with the first character a
   *  letter, the last a letter or a number, and a 63 character maximum.
   */
  // const cdnKeyId = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callCreateCdnKey() {
    // Construct request
    const request = {
      parent,
      cdnKey,
      cdnKeyId,
    };

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

  callCreateCdnKey();

checkCreateLiveConfigProgress(name)

checkCreateLiveConfigProgress(name: string): Promise<LROperation<protos.google.cloud.video.stitcher.v1.LiveConfig, protos.google.cloud.video.stitcher.v1.OperationMetadata>>;

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

Parameter
Name Description
name string

The operation name that will be passed.

Returns
Type Description
Promise<LROperation<protos.google.cloud.video.stitcher.v1.LiveConfig, protos.google.cloud.video.stitcher.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. The project in which the live config should be created, in
   *  the form of `projects/{project_number}/locations/{location}`.
   */
  // const parent = 'abc123'
  /**
   *  Required. The unique identifier ID to use for the live config.
   */
  // const liveConfigId = 'abc123'
  /**
   *  Required. The live config resource to create.
   */
  // const liveConfig = {}
  /**
   *  A 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 Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callCreateLiveConfig() {
    // Construct request
    const request = {
      parent,
      liveConfigId,
      liveConfig,
    };

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

  callCreateLiveConfig();

checkCreateSlateProgress(name)

checkCreateSlateProgress(name: string): Promise<LROperation<protos.google.cloud.video.stitcher.v1.Slate, protos.google.cloud.video.stitcher.v1.OperationMetadata>>;

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

Parameter
Name Description
name string

The operation name that will be passed.

Returns
Type Description
Promise<LROperation<protos.google.cloud.video.stitcher.v1.Slate, protos.google.cloud.video.stitcher.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. The project in which the slate should be created, in the form of
   *  `projects/{project_number}/locations/{location}`.
   */
  // const parent = 'abc123'
  /**
   *  Required. The unique identifier for the slate.
   *  This value should conform to RFC-1034, which restricts to
   *  lower-case letters, numbers, and hyphen, with the first character a
   *  letter, the last a letter or a number, and a 63 character maximum.
   */
  // const slateId = 'abc123'
  /**
   *  Required. The slate to create.
   */
  // const slate = {}
  /**
   *  A 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 Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callCreateSlate() {
    // Construct request
    const request = {
      parent,
      slateId,
      slate,
    };

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

  callCreateSlate();

checkCreateVodConfigProgress(name)

checkCreateVodConfigProgress(name: string): Promise<LROperation<protos.google.cloud.video.stitcher.v1.VodConfig, protos.google.cloud.video.stitcher.v1.OperationMetadata>>;

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

Parameter
Name Description
name string

The operation name that will be passed.

Returns
Type Description
Promise<LROperation<protos.google.cloud.video.stitcher.v1.VodConfig, protos.google.cloud.video.stitcher.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. The project in which the VOD config should be created, in
   *  the form of `projects/{project_number}/locations/{location}`.
   */
  // const parent = 'abc123'
  /**
   *  Required. The unique identifier ID to use for the VOD config.
   */
  // const vodConfigId = 'abc123'
  /**
   *  Required. The VOD config resource to create.
   */
  // const vodConfig = {}
  /**
   *  Optional. A 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 Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callCreateVodConfig() {
    // Construct request
    const request = {
      parent,
      vodConfigId,
      vodConfig,
    };

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

  callCreateVodConfig();

checkDeleteCdnKeyProgress(name)

checkDeleteCdnKeyProgress(name: string): Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.video.stitcher.v1.OperationMetadata>>;

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

Parameter
Name Description
name string

The operation name that will be passed.

Returns
Type Description
Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.video.stitcher.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. The name of the CDN key to be deleted, in the form of
   *  `projects/{project_number}/locations/{location}/cdnKeys/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callDeleteCdnKey();

checkDeleteLiveConfigProgress(name)

checkDeleteLiveConfigProgress(name: string): Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.video.stitcher.v1.OperationMetadata>>;

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

Parameter
Name Description
name string

The operation name that will be passed.

Returns
Type Description
Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.video.stitcher.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. The name of the live config to be deleted, in the form of
   *  `projects/{project_number}/locations/{location}/liveConfigs/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callDeleteLiveConfig();

checkDeleteSlateProgress(name)

checkDeleteSlateProgress(name: string): Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.video.stitcher.v1.OperationMetadata>>;

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

Parameter
Name Description
name string

The operation name that will be passed.

Returns
Type Description
Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.video.stitcher.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. The name of the slate to be deleted, in the form of
   *  `projects/{project_number}/locations/{location}/slates/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callDeleteSlate();

checkDeleteVodConfigProgress(name)

checkDeleteVodConfigProgress(name: string): Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.video.stitcher.v1.OperationMetadata>>;

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

Parameter
Name Description
name string

The operation name that will be passed.

Returns
Type Description
Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.video.stitcher.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. The name of the VOD config to be deleted, in the form of
   *  `projects/{project_number}/locations/{location}/vodConfigs/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callDeleteVodConfig();

checkUpdateCdnKeyProgress(name)

checkUpdateCdnKeyProgress(name: string): Promise<LROperation<protos.google.cloud.video.stitcher.v1.CdnKey, protos.google.cloud.video.stitcher.v1.OperationMetadata>>;

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

Parameter
Name Description
name string

The operation name that will be passed.

Returns
Type Description
Promise<LROperation<protos.google.cloud.video.stitcher.v1.CdnKey, protos.google.cloud.video.stitcher.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. The CDN key resource which replaces the resource on the server.
   */
  // const cdnKey = {}
  /**
   *  Required. The update mask applies to the resource.
   *  For the `FieldMask` definition, see
   *  https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
   */
  // const updateMask = {}

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callUpdateCdnKey() {
    // Construct request
    const request = {
      cdnKey,
      updateMask,
    };

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

  callUpdateCdnKey();

checkUpdateLiveConfigProgress(name)

checkUpdateLiveConfigProgress(name: string): Promise<LROperation<protos.google.cloud.video.stitcher.v1.LiveConfig, protos.google.cloud.video.stitcher.v1.OperationMetadata>>;

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

Parameter
Name Description
name string

The operation name that will be passed.

Returns
Type Description
Promise<LROperation<protos.google.cloud.video.stitcher.v1.LiveConfig, protos.google.cloud.video.stitcher.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. The LiveConfig resource which replaces the resource on the
   *  server.
   */
  // const liveConfig = {}
  /**
   *  Required. The update mask applies to the resource.
   *  For the `FieldMask` definition, see
   *  https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
   */
  // const updateMask = {}

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callUpdateLiveConfig() {
    // Construct request
    const request = {
      liveConfig,
      updateMask,
    };

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

  callUpdateLiveConfig();

checkUpdateSlateProgress(name)

checkUpdateSlateProgress(name: string): Promise<LROperation<protos.google.cloud.video.stitcher.v1.Slate, protos.google.cloud.video.stitcher.v1.OperationMetadata>>;

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

Parameter
Name Description
name string

The operation name that will be passed.

Returns
Type Description
Promise<LROperation<protos.google.cloud.video.stitcher.v1.Slate, protos.google.cloud.video.stitcher.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. The resource with updated fields.
   */
  // const slate = {}
  /**
   *  Required. The update mask which specifies fields which should be updated.
   */
  // const updateMask = {}

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callUpdateSlate() {
    // Construct request
    const request = {
      slate,
      updateMask,
    };

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

  callUpdateSlate();

checkUpdateVodConfigProgress(name)

checkUpdateVodConfigProgress(name: string): Promise<LROperation<protos.google.cloud.video.stitcher.v1.VodConfig, protos.google.cloud.video.stitcher.v1.OperationMetadata>>;

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

Parameter
Name Description
name string

The operation name that will be passed.

Returns
Type Description
Promise<LROperation<protos.google.cloud.video.stitcher.v1.VodConfig, protos.google.cloud.video.stitcher.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. The VOD config resource which replaces the resource on the
   *  server.
   */
  // const vodConfig = {}
  /**
   *  Required. The update mask applies to the resource.
   *  For the `FieldMask` definition, see
   *  https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
   */
  // const updateMask = {}

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callUpdateVodConfig() {
    // Construct request
    const request = {
      vodConfig,
      updateMask,
    };

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

  callUpdateVodConfig();

close()

close(): Promise<void>;

Terminate the gRPC channel and close the client.

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

Returns
Type Description
Promise<void>

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

createCdnKey(request, options)

createCdnKey(request?: protos.google.cloud.video.stitcher.v1.ICreateCdnKeyRequest, options?: CallOptions): Promise<[
        LROperation<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IOperationMetadata>,
        protos.google.longrunning.IOperation | undefined,
        {} | undefined
    ]>;

Creates a new CDN key.

Parameters
Name Description
request ICreateCdnKeyRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ LROperation<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.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. The project in which the CDN key should be created, in the form
   *  of `projects/{project_number}/locations/{location}`.
   */
  // const parent = 'abc123'
  /**
   *  Required. The CDN key resource to create.
   */
  // const cdnKey = {}
  /**
   *  Required. The ID to use for the CDN key, which will become the final
   *  component of the CDN key's resource name.
   *  This value should conform to RFC-1034, which restricts to
   *  lower-case letters, numbers, and hyphen, with the first character a
   *  letter, the last a letter or a number, and a 63 character maximum.
   */
  // const cdnKeyId = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callCreateCdnKey() {
    // Construct request
    const request = {
      parent,
      cdnKey,
      cdnKeyId,
    };

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

  callCreateCdnKey();

createCdnKey(request, options, callback)

createCdnKey(request: protos.google.cloud.video.stitcher.v1.ICreateCdnKeyRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request ICreateCdnKeyRequest
options CallOptions
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

createCdnKey(request, callback)

createCdnKey(request: protos.google.cloud.video.stitcher.v1.ICreateCdnKeyRequest, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request ICreateCdnKeyRequest
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

createLiveConfig(request, options)

createLiveConfig(request?: protos.google.cloud.video.stitcher.v1.ICreateLiveConfigRequest, options?: CallOptions): Promise<[
        LROperation<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>,
        protos.google.longrunning.IOperation | undefined,
        {} | undefined
    ]>;

Registers the live config with the provided unique ID in the specified region.

Parameters
Name Description
request ICreateLiveConfigRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ LROperation<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.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. The project in which the live config should be created, in
   *  the form of `projects/{project_number}/locations/{location}`.
   */
  // const parent = 'abc123'
  /**
   *  Required. The unique identifier ID to use for the live config.
   */
  // const liveConfigId = 'abc123'
  /**
   *  Required. The live config resource to create.
   */
  // const liveConfig = {}
  /**
   *  A 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 Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callCreateLiveConfig() {
    // Construct request
    const request = {
      parent,
      liveConfigId,
      liveConfig,
    };

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

  callCreateLiveConfig();

createLiveConfig(request, options, callback)

createLiveConfig(request: protos.google.cloud.video.stitcher.v1.ICreateLiveConfigRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request ICreateLiveConfigRequest
options CallOptions
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

createLiveConfig(request, callback)

createLiveConfig(request: protos.google.cloud.video.stitcher.v1.ICreateLiveConfigRequest, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request ICreateLiveConfigRequest
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

createLiveSession(request, options)

createLiveSession(request?: protos.google.cloud.video.stitcher.v1.ICreateLiveSessionRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.ILiveSession,
        (protos.google.cloud.video.stitcher.v1.ICreateLiveSessionRequest | undefined),
        {} | undefined
    ]>;

Creates a new live session.

Parameters
Name Description
request ICreateLiveSessionRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.ILiveSession, (protos.google.cloud.video.stitcher.v1.ICreateLiveSessionRequest | 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 project and location in which the live session should be
   *  created, in the form of `projects/{project_number}/locations/{location}`.
   */
  // const parent = 'abc123'
  /**
   *  Required. Parameters for creating a live session.
   */
  // const liveSession = {}

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

    // Run request
    const response = await stitcherClient.createLiveSession(request);
    console.log(response);
  }

  callCreateLiveSession();

createLiveSession(request, options, callback)

createLiveSession(request: protos.google.cloud.video.stitcher.v1.ICreateLiveSessionRequest, options: CallOptions, callback: Callback<protos.google.cloud.video.stitcher.v1.ILiveSession, protos.google.cloud.video.stitcher.v1.ICreateLiveSessionRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request ICreateLiveSessionRequest
options CallOptions
callback Callback<protos.google.cloud.video.stitcher.v1.ILiveSession, protos.google.cloud.video.stitcher.v1.ICreateLiveSessionRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

createLiveSession(request, callback)

createLiveSession(request: protos.google.cloud.video.stitcher.v1.ICreateLiveSessionRequest, callback: Callback<protos.google.cloud.video.stitcher.v1.ILiveSession, protos.google.cloud.video.stitcher.v1.ICreateLiveSessionRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request ICreateLiveSessionRequest
callback Callback<protos.google.cloud.video.stitcher.v1.ILiveSession, protos.google.cloud.video.stitcher.v1.ICreateLiveSessionRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

createSlate(request, options)

createSlate(request?: protos.google.cloud.video.stitcher.v1.ICreateSlateRequest, options?: CallOptions): Promise<[
        LROperation<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IOperationMetadata>,
        protos.google.longrunning.IOperation | undefined,
        {} | undefined
    ]>;

Creates a slate.

Parameters
Name Description
request ICreateSlateRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ LROperation<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.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. The project in which the slate should be created, in the form of
   *  `projects/{project_number}/locations/{location}`.
   */
  // const parent = 'abc123'
  /**
   *  Required. The unique identifier for the slate.
   *  This value should conform to RFC-1034, which restricts to
   *  lower-case letters, numbers, and hyphen, with the first character a
   *  letter, the last a letter or a number, and a 63 character maximum.
   */
  // const slateId = 'abc123'
  /**
   *  Required. The slate to create.
   */
  // const slate = {}
  /**
   *  A 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 Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callCreateSlate() {
    // Construct request
    const request = {
      parent,
      slateId,
      slate,
    };

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

  callCreateSlate();

createSlate(request, options, callback)

createSlate(request: protos.google.cloud.video.stitcher.v1.ICreateSlateRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request ICreateSlateRequest
options CallOptions
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

createSlate(request, callback)

createSlate(request: protos.google.cloud.video.stitcher.v1.ICreateSlateRequest, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request ICreateSlateRequest
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

createVodConfig(request, options)

createVodConfig(request?: protos.google.cloud.video.stitcher.v1.ICreateVodConfigRequest, options?: CallOptions): Promise<[
        LROperation<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>,
        protos.google.longrunning.IOperation | undefined,
        {} | undefined
    ]>;

Registers the VOD config with the provided unique ID in the specified region.

Parameters
Name Description
request ICreateVodConfigRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ LROperation<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.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. The project in which the VOD config should be created, in
   *  the form of `projects/{project_number}/locations/{location}`.
   */
  // const parent = 'abc123'
  /**
   *  Required. The unique identifier ID to use for the VOD config.
   */
  // const vodConfigId = 'abc123'
  /**
   *  Required. The VOD config resource to create.
   */
  // const vodConfig = {}
  /**
   *  Optional. A 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 Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callCreateVodConfig() {
    // Construct request
    const request = {
      parent,
      vodConfigId,
      vodConfig,
    };

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

  callCreateVodConfig();

createVodConfig(request, options, callback)

createVodConfig(request: protos.google.cloud.video.stitcher.v1.ICreateVodConfigRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request ICreateVodConfigRequest
options CallOptions
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

createVodConfig(request, callback)

createVodConfig(request: protos.google.cloud.video.stitcher.v1.ICreateVodConfigRequest, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request ICreateVodConfigRequest
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

createVodSession(request, options)

createVodSession(request?: protos.google.cloud.video.stitcher.v1.ICreateVodSessionRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.IVodSession,
        (protos.google.cloud.video.stitcher.v1.ICreateVodSessionRequest | undefined),
        {} | undefined
    ]>;

Creates a client side playback VOD session and returns the full tracking and playback metadata of the session.

Parameters
Name Description
request ICreateVodSessionRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.IVodSession, (protos.google.cloud.video.stitcher.v1.ICreateVodSessionRequest | 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 project and location in which the VOD session should be
   *  created, in the form of `projects/{project_number}/locations/{location}`.
   */
  // const parent = 'abc123'
  /**
   *  Required. Parameters for creating a session.
   */
  // const vodSession = {}

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

    // Run request
    const response = await stitcherClient.createVodSession(request);
    console.log(response);
  }

  callCreateVodSession();

createVodSession(request, options, callback)

createVodSession(request: protos.google.cloud.video.stitcher.v1.ICreateVodSessionRequest, options: CallOptions, callback: Callback<protos.google.cloud.video.stitcher.v1.IVodSession, protos.google.cloud.video.stitcher.v1.ICreateVodSessionRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request ICreateVodSessionRequest
options CallOptions
callback Callback<protos.google.cloud.video.stitcher.v1.IVodSession, protos.google.cloud.video.stitcher.v1.ICreateVodSessionRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

createVodSession(request, callback)

createVodSession(request: protos.google.cloud.video.stitcher.v1.ICreateVodSessionRequest, callback: Callback<protos.google.cloud.video.stitcher.v1.IVodSession, protos.google.cloud.video.stitcher.v1.ICreateVodSessionRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request ICreateVodSessionRequest
callback Callback<protos.google.cloud.video.stitcher.v1.IVodSession, protos.google.cloud.video.stitcher.v1.ICreateVodSessionRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

deleteCdnKey(request, options)

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

Deletes the specified CDN key.

Parameters
Name Description
request IDeleteCdnKeyRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.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. The name of the CDN key to be deleted, in the form of
   *  `projects/{project_number}/locations/{location}/cdnKeys/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callDeleteCdnKey();

deleteCdnKey(request, options, callback)

deleteCdnKey(request: protos.google.cloud.video.stitcher.v1.IDeleteCdnKeyRequest, options: CallOptions, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IDeleteCdnKeyRequest
options CallOptions
callback Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

deleteCdnKey(request, callback)

deleteCdnKey(request: protos.google.cloud.video.stitcher.v1.IDeleteCdnKeyRequest, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IDeleteCdnKeyRequest
callback Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

deleteLiveConfig(request, options)

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

Deletes the specified live config.

Parameters
Name Description
request IDeleteLiveConfigRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.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. The name of the live config to be deleted, in the form of
   *  `projects/{project_number}/locations/{location}/liveConfigs/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callDeleteLiveConfig();

deleteLiveConfig(request, options, callback)

deleteLiveConfig(request: protos.google.cloud.video.stitcher.v1.IDeleteLiveConfigRequest, options: CallOptions, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IDeleteLiveConfigRequest
options CallOptions
callback Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

deleteLiveConfig(request, callback)

deleteLiveConfig(request: protos.google.cloud.video.stitcher.v1.IDeleteLiveConfigRequest, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IDeleteLiveConfigRequest
callback Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
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
Name Description
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
Type Description
Promise<protos.google.protobuf.Empty>
Example

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

deleteSlate(request, options)

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

Deletes the specified slate.

Parameters
Name Description
request IDeleteSlateRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.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. The name of the slate to be deleted, in the form of
   *  `projects/{project_number}/locations/{location}/slates/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callDeleteSlate();

deleteSlate(request, options, callback)

deleteSlate(request: protos.google.cloud.video.stitcher.v1.IDeleteSlateRequest, options: CallOptions, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IDeleteSlateRequest
options CallOptions
callback Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

deleteSlate(request, callback)

deleteSlate(request: protos.google.cloud.video.stitcher.v1.IDeleteSlateRequest, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IDeleteSlateRequest
callback Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

deleteVodConfig(request, options)

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

Deletes the specified VOD config.

Parameters
Name Description
request IDeleteVodConfigRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.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. The name of the VOD config to be deleted, in the form of
   *  `projects/{project_number}/locations/{location}/vodConfigs/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callDeleteVodConfig();

deleteVodConfig(request, options, callback)

deleteVodConfig(request: protos.google.cloud.video.stitcher.v1.IDeleteVodConfigRequest, options: CallOptions, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IDeleteVodConfigRequest
options CallOptions
callback Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

deleteVodConfig(request, callback)

deleteVodConfig(request: protos.google.cloud.video.stitcher.v1.IDeleteVodConfigRequest, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IDeleteVodConfigRequest
callback Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

getCdnKey(request, options)

getCdnKey(request?: protos.google.cloud.video.stitcher.v1.IGetCdnKeyRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.ICdnKey,
        protos.google.cloud.video.stitcher.v1.IGetCdnKeyRequest | undefined,
        {} | undefined
    ]>;

Returns the specified CDN key.

Parameters
Name Description
request IGetCdnKeyRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IGetCdnKeyRequest | undefined, {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing CdnKey. 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 CDN key to be retrieved, in the form of
   *  `projects/{project}/locations/{location}/cdnKeys/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

    // Run request
    const response = await stitcherClient.getCdnKey(request);
    console.log(response);
  }

  callGetCdnKey();

getCdnKey(request, options, callback)

getCdnKey(request: protos.google.cloud.video.stitcher.v1.IGetCdnKeyRequest, options: CallOptions, callback: Callback<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IGetCdnKeyRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetCdnKeyRequest
options CallOptions
callback Callback<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IGetCdnKeyRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getCdnKey(request, callback)

getCdnKey(request: protos.google.cloud.video.stitcher.v1.IGetCdnKeyRequest, callback: Callback<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IGetCdnKeyRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetCdnKeyRequest
callback Callback<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IGetCdnKeyRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getLiveAdTagDetail(request, options)

getLiveAdTagDetail(request?: protos.google.cloud.video.stitcher.v1.IGetLiveAdTagDetailRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail,
        (protos.google.cloud.video.stitcher.v1.IGetLiveAdTagDetailRequest | undefined),
        {} | undefined
    ]>;

Returns the specified ad tag detail for the specified live session.

Parameters
Name Description
request IGetLiveAdTagDetailRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail, (protos.google.cloud.video.stitcher.v1.IGetLiveAdTagDetailRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing LiveAdTagDetail. 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 resource name in the form of
   *  `projects/{project}/locations/{location}/liveSessions/{live_session}/liveAdTagDetails/{live_ad_tag_detail}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

    // Run request
    const response = await stitcherClient.getLiveAdTagDetail(request);
    console.log(response);
  }

  callGetLiveAdTagDetail();

getLiveAdTagDetail(request, options, callback)

getLiveAdTagDetail(request: protos.google.cloud.video.stitcher.v1.IGetLiveAdTagDetailRequest, options: CallOptions, callback: Callback<protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail, protos.google.cloud.video.stitcher.v1.IGetLiveAdTagDetailRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetLiveAdTagDetailRequest
options CallOptions
callback Callback<protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail, protos.google.cloud.video.stitcher.v1.IGetLiveAdTagDetailRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getLiveAdTagDetail(request, callback)

getLiveAdTagDetail(request: protos.google.cloud.video.stitcher.v1.IGetLiveAdTagDetailRequest, callback: Callback<protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail, protos.google.cloud.video.stitcher.v1.IGetLiveAdTagDetailRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetLiveAdTagDetailRequest
callback Callback<protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail, protos.google.cloud.video.stitcher.v1.IGetLiveAdTagDetailRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getLiveConfig(request, options)

getLiveConfig(request?: protos.google.cloud.video.stitcher.v1.IGetLiveConfigRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.ILiveConfig,
        protos.google.cloud.video.stitcher.v1.IGetLiveConfigRequest | undefined,
        {} | undefined
    ]>;

Returns the specified live config managed by the Video Stitcher service.

Parameters
Name Description
request IGetLiveConfigRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IGetLiveConfigRequest | 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 live config to be retrieved, in the form
   *  of
   *  `projects/{project_number}/locations/{location}/liveConfigs/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

    // Run request
    const response = await stitcherClient.getLiveConfig(request);
    console.log(response);
  }

  callGetLiveConfig();

getLiveConfig(request, options, callback)

getLiveConfig(request: protos.google.cloud.video.stitcher.v1.IGetLiveConfigRequest, options: CallOptions, callback: Callback<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IGetLiveConfigRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetLiveConfigRequest
options CallOptions
callback Callback<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IGetLiveConfigRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getLiveConfig(request, callback)

getLiveConfig(request: protos.google.cloud.video.stitcher.v1.IGetLiveConfigRequest, callback: Callback<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IGetLiveConfigRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetLiveConfigRequest
callback Callback<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IGetLiveConfigRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getLiveSession(request, options)

getLiveSession(request?: protos.google.cloud.video.stitcher.v1.IGetLiveSessionRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.ILiveSession,
        protos.google.cloud.video.stitcher.v1.IGetLiveSessionRequest | undefined,
        {} | undefined
    ]>;

Returns the details for the specified live session.

Parameters
Name Description
request IGetLiveSessionRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.ILiveSession, protos.google.cloud.video.stitcher.v1.IGetLiveSessionRequest | 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 live session, in the form of
   *  `projects/{project_number}/locations/{location}/liveSessions/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

    // Run request
    const response = await stitcherClient.getLiveSession(request);
    console.log(response);
  }

  callGetLiveSession();

getLiveSession(request, options, callback)

getLiveSession(request: protos.google.cloud.video.stitcher.v1.IGetLiveSessionRequest, options: CallOptions, callback: Callback<protos.google.cloud.video.stitcher.v1.ILiveSession, protos.google.cloud.video.stitcher.v1.IGetLiveSessionRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetLiveSessionRequest
options CallOptions
callback Callback<protos.google.cloud.video.stitcher.v1.ILiveSession, protos.google.cloud.video.stitcher.v1.IGetLiveSessionRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getLiveSession(request, callback)

getLiveSession(request: protos.google.cloud.video.stitcher.v1.IGetLiveSessionRequest, callback: Callback<protos.google.cloud.video.stitcher.v1.ILiveSession, protos.google.cloud.video.stitcher.v1.IGetLiveSessionRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetLiveSessionRequest
callback Callback<protos.google.cloud.video.stitcher.v1.ILiveSession, protos.google.cloud.video.stitcher.v1.IGetLiveSessionRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

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
Name Description
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
Type Description
Promise<[protos.google.longrunning.Operation]>
Example

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

getProjectId()

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

getProjectId(callback)

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

getSlate(request, options)

getSlate(request?: protos.google.cloud.video.stitcher.v1.IGetSlateRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.ISlate,
        protos.google.cloud.video.stitcher.v1.IGetSlateRequest | undefined,
        {} | undefined
    ]>;

Returns the specified slate.

Parameters
Name Description
request IGetSlateRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IGetSlateRequest | 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 slate to be retrieved, of the slate, in the form
   *  of `projects/{project_number}/locations/{location}/slates/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

    // Run request
    const response = await stitcherClient.getSlate(request);
    console.log(response);
  }

  callGetSlate();

getSlate(request, options, callback)

getSlate(request: protos.google.cloud.video.stitcher.v1.IGetSlateRequest, options: CallOptions, callback: Callback<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IGetSlateRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetSlateRequest
options CallOptions
callback Callback<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IGetSlateRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getSlate(request, callback)

getSlate(request: protos.google.cloud.video.stitcher.v1.IGetSlateRequest, callback: Callback<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IGetSlateRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetSlateRequest
callback Callback<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IGetSlateRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getVodAdTagDetail(request, options)

getVodAdTagDetail(request?: protos.google.cloud.video.stitcher.v1.IGetVodAdTagDetailRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.IVodAdTagDetail,
        (protos.google.cloud.video.stitcher.v1.IGetVodAdTagDetailRequest | undefined),
        {} | undefined
    ]>;

Returns the specified ad tag detail for the specified VOD session.

Parameters
Name Description
request IGetVodAdTagDetailRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.IVodAdTagDetail, (protos.google.cloud.video.stitcher.v1.IGetVodAdTagDetailRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing VodAdTagDetail. 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 ad tag detail for the specified VOD session, in
   *  the form of
   *  `projects/{project}/locations/{location}/vodSessions/{vod_session_id}/vodAdTagDetails/{vod_ad_tag_detail}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

    // Run request
    const response = await stitcherClient.getVodAdTagDetail(request);
    console.log(response);
  }

  callGetVodAdTagDetail();

getVodAdTagDetail(request, options, callback)

getVodAdTagDetail(request: protos.google.cloud.video.stitcher.v1.IGetVodAdTagDetailRequest, options: CallOptions, callback: Callback<protos.google.cloud.video.stitcher.v1.IVodAdTagDetail, protos.google.cloud.video.stitcher.v1.IGetVodAdTagDetailRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetVodAdTagDetailRequest
options CallOptions
callback Callback<protos.google.cloud.video.stitcher.v1.IVodAdTagDetail, protos.google.cloud.video.stitcher.v1.IGetVodAdTagDetailRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getVodAdTagDetail(request, callback)

getVodAdTagDetail(request: protos.google.cloud.video.stitcher.v1.IGetVodAdTagDetailRequest, callback: Callback<protos.google.cloud.video.stitcher.v1.IVodAdTagDetail, protos.google.cloud.video.stitcher.v1.IGetVodAdTagDetailRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetVodAdTagDetailRequest
callback Callback<protos.google.cloud.video.stitcher.v1.IVodAdTagDetail, protos.google.cloud.video.stitcher.v1.IGetVodAdTagDetailRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getVodConfig(request, options)

getVodConfig(request?: protos.google.cloud.video.stitcher.v1.IGetVodConfigRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.IVodConfig,
        protos.google.cloud.video.stitcher.v1.IGetVodConfigRequest | undefined,
        {} | undefined
    ]>;

Returns the specified VOD config managed by the Video Stitcher API service.

Parameters
Name Description
request IGetVodConfigRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IGetVodConfigRequest | 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 VOD config to be retrieved, in the form
   *  of `projects/{project_number}/locations/{location}/vodConfigs/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

    // Run request
    const response = await stitcherClient.getVodConfig(request);
    console.log(response);
  }

  callGetVodConfig();

getVodConfig(request, options, callback)

getVodConfig(request: protos.google.cloud.video.stitcher.v1.IGetVodConfigRequest, options: CallOptions, callback: Callback<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IGetVodConfigRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetVodConfigRequest
options CallOptions
callback Callback<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IGetVodConfigRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getVodConfig(request, callback)

getVodConfig(request: protos.google.cloud.video.stitcher.v1.IGetVodConfigRequest, callback: Callback<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IGetVodConfigRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetVodConfigRequest
callback Callback<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IGetVodConfigRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getVodSession(request, options)

getVodSession(request?: protos.google.cloud.video.stitcher.v1.IGetVodSessionRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.IVodSession,
        protos.google.cloud.video.stitcher.v1.IGetVodSessionRequest | undefined,
        {} | undefined
    ]>;

Returns the full tracking, playback metadata, and relevant ad-ops logs for the specified VOD session.

Parameters
Name Description
request IGetVodSessionRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.IVodSession, protos.google.cloud.video.stitcher.v1.IGetVodSessionRequest | 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 VOD session to be retrieved, in the form of
   *  `projects/{project_number}/locations/{location}/vodSessions/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

    // Run request
    const response = await stitcherClient.getVodSession(request);
    console.log(response);
  }

  callGetVodSession();

getVodSession(request, options, callback)

getVodSession(request: protos.google.cloud.video.stitcher.v1.IGetVodSessionRequest, options: CallOptions, callback: Callback<protos.google.cloud.video.stitcher.v1.IVodSession, protos.google.cloud.video.stitcher.v1.IGetVodSessionRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetVodSessionRequest
options CallOptions
callback Callback<protos.google.cloud.video.stitcher.v1.IVodSession, protos.google.cloud.video.stitcher.v1.IGetVodSessionRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getVodSession(request, callback)

getVodSession(request: protos.google.cloud.video.stitcher.v1.IGetVodSessionRequest, callback: Callback<protos.google.cloud.video.stitcher.v1.IVodSession, protos.google.cloud.video.stitcher.v1.IGetVodSessionRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetVodSessionRequest
callback Callback<protos.google.cloud.video.stitcher.v1.IVodSession, protos.google.cloud.video.stitcher.v1.IGetVodSessionRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getVodStitchDetail(request, options)

getVodStitchDetail(request?: protos.google.cloud.video.stitcher.v1.IGetVodStitchDetailRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.IVodStitchDetail,
        (protos.google.cloud.video.stitcher.v1.IGetVodStitchDetailRequest | undefined),
        {} | undefined
    ]>;

Returns the specified stitching information for the specified VOD session.

Parameters
Name Description
request IGetVodStitchDetailRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.IVodStitchDetail, (protos.google.cloud.video.stitcher.v1.IGetVodStitchDetailRequest | undefined), {} | undefined ]>

{Promise} - The promise which resolves to an array. The first element of the array is an object representing VodStitchDetail. 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 stitch detail in the specified VOD session, in
   *  the form of
   *  `projects/{project}/locations/{location}/vodSessions/{vod_session_id}/vodStitchDetails/{id}`.
   */
  // const name = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

    // Run request
    const response = await stitcherClient.getVodStitchDetail(request);
    console.log(response);
  }

  callGetVodStitchDetail();

getVodStitchDetail(request, options, callback)

getVodStitchDetail(request: protos.google.cloud.video.stitcher.v1.IGetVodStitchDetailRequest, options: CallOptions, callback: Callback<protos.google.cloud.video.stitcher.v1.IVodStitchDetail, protos.google.cloud.video.stitcher.v1.IGetVodStitchDetailRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetVodStitchDetailRequest
options CallOptions
callback Callback<protos.google.cloud.video.stitcher.v1.IVodStitchDetail, protos.google.cloud.video.stitcher.v1.IGetVodStitchDetailRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

getVodStitchDetail(request, callback)

getVodStitchDetail(request: protos.google.cloud.video.stitcher.v1.IGetVodStitchDetailRequest, callback: Callback<protos.google.cloud.video.stitcher.v1.IVodStitchDetail, protos.google.cloud.video.stitcher.v1.IGetVodStitchDetailRequest | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IGetVodStitchDetailRequest
callback Callback<protos.google.cloud.video.stitcher.v1.IVodStitchDetail, protos.google.cloud.video.stitcher.v1.IGetVodStitchDetailRequest | null | undefined, {} | null | undefined>
Returns
Type Description
void

initialize()

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

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

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

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

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

listCdnKeys(request, options)

listCdnKeys(request?: protos.google.cloud.video.stitcher.v1.IListCdnKeysRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.ICdnKey[],
        protos.google.cloud.video.stitcher.v1.IListCdnKeysRequest | null,
        protos.google.cloud.video.stitcher.v1.IListCdnKeysResponse
    ]>;

Lists all CDN keys in the specified project and location.

Parameters
Name Description
request IListCdnKeysRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.ICdnKey[], protos.google.cloud.video.stitcher.v1.IListCdnKeysRequest | null, protos.google.cloud.video.stitcher.v1.IListCdnKeysResponse ]>

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

listCdnKeys(request, options, callback)

listCdnKeys(request: protos.google.cloud.video.stitcher.v1.IListCdnKeysRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListCdnKeysRequest, protos.google.cloud.video.stitcher.v1.IListCdnKeysResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ICdnKey>): void;
Parameters
Name Description
request IListCdnKeysRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListCdnKeysRequest, protos.google.cloud.video.stitcher.v1.IListCdnKeysResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ICdnKey>
Returns
Type Description
void

listCdnKeys(request, callback)

listCdnKeys(request: protos.google.cloud.video.stitcher.v1.IListCdnKeysRequest, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListCdnKeysRequest, protos.google.cloud.video.stitcher.v1.IListCdnKeysResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ICdnKey>): void;
Parameters
Name Description
request IListCdnKeysRequest
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListCdnKeysRequest, protos.google.cloud.video.stitcher.v1.IListCdnKeysResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ICdnKey>
Returns
Type Description
void

listCdnKeysAsync(request, options)

listCdnKeysAsync(request?: protos.google.cloud.video.stitcher.v1.IListCdnKeysRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.video.stitcher.v1.ICdnKey>;

Equivalent to listCdnKeys, but returns an iterable object.

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

Parameters
Name Description
request IListCdnKeysRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
AsyncIterable<protos.google.cloud.video.stitcher.v1.ICdnKey>

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

  /**
   * TODO(developer): Uncomment these variables before running the sample.
   */
  /**
   *  Required. The project that contains the list of CDN keys, in the form of
   *  `projects/{project_number}/locations/{location}`.
   */
  // 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 Stitcher library
  const {VideoStitcherServiceClient} =
    require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callListCdnKeys();

listCdnKeysStream(request, options)

listCdnKeysStream(request?: protos.google.cloud.video.stitcher.v1.IListCdnKeysRequest, options?: CallOptions): Transform;

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

Parameters
Name Description
request IListCdnKeysRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Transform

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

listLiveAdTagDetails(request, options)

listLiveAdTagDetails(request?: protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail[],
        protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsRequest | null,
        protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsResponse
    ]>;

Return the list of ad tag details for the specified live session.

Parameters
Name Description
request IListLiveAdTagDetailsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail[], protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsRequest | null, protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsResponse ]>

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

listLiveAdTagDetails(request, options, callback)

listLiveAdTagDetails(request: protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsRequest, protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail>): void;
Parameters
Name Description
request IListLiveAdTagDetailsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsRequest, protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail>
Returns
Type Description
void

listLiveAdTagDetails(request, callback)

listLiveAdTagDetails(request: protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsRequest, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsRequest, protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail>): void;
Parameters
Name Description
request IListLiveAdTagDetailsRequest
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsRequest, protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail>
Returns
Type Description
void

listLiveAdTagDetailsAsync(request, options)

listLiveAdTagDetailsAsync(request?: protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail>;

Equivalent to listLiveAdTagDetails, but returns an iterable object.

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

Parameters
Name Description
request IListLiveAdTagDetailsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
AsyncIterable<protos.google.cloud.video.stitcher.v1.ILiveAdTagDetail>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing LiveAdTagDetail. 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 resource parent in the form of
   *  `projects/{project}/locations/{location}/liveSessions/{live_session}`.
   */
  // const parent = 'abc123'
  /**
   *  The maximum number of items to return.
   */
  // const pageSize = 1234
  /**
   *  The pagination token returned from a previous List request.
   */
  // const pageToken = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callListLiveAdTagDetails();

listLiveAdTagDetailsStream(request, options)

listLiveAdTagDetailsStream(request?: protos.google.cloud.video.stitcher.v1.IListLiveAdTagDetailsRequest, options?: CallOptions): Transform;

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

Parameters
Name Description
request IListLiveAdTagDetailsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Transform

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

listLiveConfigs(request, options)

listLiveConfigs(request?: protos.google.cloud.video.stitcher.v1.IListLiveConfigsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.ILiveConfig[],
        protos.google.cloud.video.stitcher.v1.IListLiveConfigsRequest | null,
        protos.google.cloud.video.stitcher.v1.IListLiveConfigsResponse
    ]>;

Lists all live configs managed by the Video Stitcher that belong to the specified project and region.

Parameters
Name Description
request IListLiveConfigsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.ILiveConfig[], protos.google.cloud.video.stitcher.v1.IListLiveConfigsRequest | null, protos.google.cloud.video.stitcher.v1.IListLiveConfigsResponse ]>

{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 listLiveConfigsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listLiveConfigs(request, options, callback)

listLiveConfigs(request: protos.google.cloud.video.stitcher.v1.IListLiveConfigsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListLiveConfigsRequest, protos.google.cloud.video.stitcher.v1.IListLiveConfigsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ILiveConfig>): void;
Parameters
Name Description
request IListLiveConfigsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListLiveConfigsRequest, protos.google.cloud.video.stitcher.v1.IListLiveConfigsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ILiveConfig>
Returns
Type Description
void

listLiveConfigs(request, callback)

listLiveConfigs(request: protos.google.cloud.video.stitcher.v1.IListLiveConfigsRequest, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListLiveConfigsRequest, protos.google.cloud.video.stitcher.v1.IListLiveConfigsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ILiveConfig>): void;
Parameters
Name Description
request IListLiveConfigsRequest
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListLiveConfigsRequest, protos.google.cloud.video.stitcher.v1.IListLiveConfigsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ILiveConfig>
Returns
Type Description
void

listLiveConfigsAsync(request, options)

listLiveConfigsAsync(request?: protos.google.cloud.video.stitcher.v1.IListLiveConfigsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.video.stitcher.v1.ILiveConfig>;

Equivalent to listLiveConfigs, but returns an iterable object.

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

Parameters
Name Description
request IListLiveConfigsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
AsyncIterable<protos.google.cloud.video.stitcher.v1.ILiveConfig>

{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 project that contains the list of live configs, in the
   *  form of `projects/{project_number}/locations/{location}`.
   */
  // const parent = 'abc123'
  /**
   *  The maximum number of items to return.
   */
  // const pageSize = 1234
  /**
   *  The next_page_token value returned from a previous List request, if any.
   */
  // const pageToken = 'abc123'
  /**
   *  Optional. The filter to apply to list results (see
   *  Filtering (https://google.aip.dev/160)).
   */
  // const filter = 'abc123'
  /**
   *  Optional. Specifies the ordering of results following
   *  Cloud API
   *  syntax (https://cloud.google.com/apis/design/design_patterns#sorting_order).
   */
  // const orderBy = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callListLiveConfigs();

listLiveConfigsStream(request, options)

listLiveConfigsStream(request?: protos.google.cloud.video.stitcher.v1.IListLiveConfigsRequest, options?: CallOptions): Transform;

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

Parameters
Name Description
request IListLiveConfigsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Transform

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

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
Name Description
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
Type Description
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)

listSlates(request, options)

listSlates(request?: protos.google.cloud.video.stitcher.v1.IListSlatesRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.ISlate[],
        protos.google.cloud.video.stitcher.v1.IListSlatesRequest | null,
        protos.google.cloud.video.stitcher.v1.IListSlatesResponse
    ]>;

Lists all slates in the specified project and location.

Parameters
Name Description
request IListSlatesRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.ISlate[], protos.google.cloud.video.stitcher.v1.IListSlatesRequest | null, protos.google.cloud.video.stitcher.v1.IListSlatesResponse ]>

{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 listSlatesAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listSlates(request, options, callback)

listSlates(request: protos.google.cloud.video.stitcher.v1.IListSlatesRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListSlatesRequest, protos.google.cloud.video.stitcher.v1.IListSlatesResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ISlate>): void;
Parameters
Name Description
request IListSlatesRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListSlatesRequest, protos.google.cloud.video.stitcher.v1.IListSlatesResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ISlate>
Returns
Type Description
void

listSlates(request, callback)

listSlates(request: protos.google.cloud.video.stitcher.v1.IListSlatesRequest, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListSlatesRequest, protos.google.cloud.video.stitcher.v1.IListSlatesResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ISlate>): void;
Parameters
Name Description
request IListSlatesRequest
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListSlatesRequest, protos.google.cloud.video.stitcher.v1.IListSlatesResponse | null | undefined, protos.google.cloud.video.stitcher.v1.ISlate>
Returns
Type Description
void

listSlatesAsync(request, options)

listSlatesAsync(request?: protos.google.cloud.video.stitcher.v1.IListSlatesRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.video.stitcher.v1.ISlate>;

Equivalent to listSlates, but returns an iterable object.

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

Parameters
Name Description
request IListSlatesRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
AsyncIterable<protos.google.cloud.video.stitcher.v1.ISlate>

{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 project to list slates, in the form of
   *  `projects/{project_number}/locations/{location}`.
   */
  // 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 Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callListSlates();

listSlatesStream(request, options)

listSlatesStream(request?: protos.google.cloud.video.stitcher.v1.IListSlatesRequest, options?: CallOptions): Transform;

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

Parameters
Name Description
request IListSlatesRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Transform

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

listVodAdTagDetails(request, options)

listVodAdTagDetails(request?: protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.IVodAdTagDetail[],
        protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsRequest | null,
        protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsResponse
    ]>;

Return the list of ad tag details for the specified VOD session.

Parameters
Name Description
request IListVodAdTagDetailsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.IVodAdTagDetail[], protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsRequest | null, protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsResponse ]>

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

listVodAdTagDetails(request, options, callback)

listVodAdTagDetails(request: protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsRequest, protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.IVodAdTagDetail>): void;
Parameters
Name Description
request IListVodAdTagDetailsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsRequest, protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.IVodAdTagDetail>
Returns
Type Description
void

listVodAdTagDetails(request, callback)

listVodAdTagDetails(request: protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsRequest, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsRequest, protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.IVodAdTagDetail>): void;
Parameters
Name Description
request IListVodAdTagDetailsRequest
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsRequest, protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.IVodAdTagDetail>
Returns
Type Description
void

listVodAdTagDetailsAsync(request, options)

listVodAdTagDetailsAsync(request?: protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.video.stitcher.v1.IVodAdTagDetail>;

Equivalent to listVodAdTagDetails, but returns an iterable object.

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

Parameters
Name Description
request IListVodAdTagDetailsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
AsyncIterable<protos.google.cloud.video.stitcher.v1.IVodAdTagDetail>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing VodAdTagDetail. 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 VOD session which the ad tag details belong to, in the form
   *  of `projects/{project}/locations/{location}/vodSessions/{vod_session_id}`.
   */
  // const parent = 'abc123'
  /**
   *  The maximum number of items to return.
   */
  // const pageSize = 1234
  /**
   *  The next_page_token value returned from a previous List request, if any.
   */
  // const pageToken = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callListVodAdTagDetails();

listVodAdTagDetailsStream(request, options)

listVodAdTagDetailsStream(request?: protos.google.cloud.video.stitcher.v1.IListVodAdTagDetailsRequest, options?: CallOptions): Transform;

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

Parameters
Name Description
request IListVodAdTagDetailsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Transform

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

listVodConfigs(request, options)

listVodConfigs(request?: protos.google.cloud.video.stitcher.v1.IListVodConfigsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.IVodConfig[],
        protos.google.cloud.video.stitcher.v1.IListVodConfigsRequest | null,
        protos.google.cloud.video.stitcher.v1.IListVodConfigsResponse
    ]>;

Lists all VOD configs managed by the Video Stitcher API that belong to the specified project and region.

Parameters
Name Description
request IListVodConfigsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.IVodConfig[], protos.google.cloud.video.stitcher.v1.IListVodConfigsRequest | null, protos.google.cloud.video.stitcher.v1.IListVodConfigsResponse ]>

{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 listVodConfigsAsync() method described below for async iteration which you can stop as needed. Please see the documentation for more details and examples.

listVodConfigs(request, options, callback)

listVodConfigs(request: protos.google.cloud.video.stitcher.v1.IListVodConfigsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListVodConfigsRequest, protos.google.cloud.video.stitcher.v1.IListVodConfigsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.IVodConfig>): void;
Parameters
Name Description
request IListVodConfigsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListVodConfigsRequest, protos.google.cloud.video.stitcher.v1.IListVodConfigsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.IVodConfig>
Returns
Type Description
void

listVodConfigs(request, callback)

listVodConfigs(request: protos.google.cloud.video.stitcher.v1.IListVodConfigsRequest, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListVodConfigsRequest, protos.google.cloud.video.stitcher.v1.IListVodConfigsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.IVodConfig>): void;
Parameters
Name Description
request IListVodConfigsRequest
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListVodConfigsRequest, protos.google.cloud.video.stitcher.v1.IListVodConfigsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.IVodConfig>
Returns
Type Description
void

listVodConfigsAsync(request, options)

listVodConfigsAsync(request?: protos.google.cloud.video.stitcher.v1.IListVodConfigsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.video.stitcher.v1.IVodConfig>;

Equivalent to listVodConfigs, but returns an iterable object.

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

Parameters
Name Description
request IListVodConfigsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
AsyncIterable<protos.google.cloud.video.stitcher.v1.IVodConfig>

{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 project that contains the list of VOD configs, in the
   *  form of `projects/{project_number}/locations/{location}`.
   */
  // const parent = 'abc123'
  /**
   *  Optional. The maximum number of items to return.
   */
  // const pageSize = 1234
  /**
   *  Optional. The next_page_token value returned from a previous List request,
   *  if any.
   */
  // const pageToken = 'abc123'
  /**
   *  Optional. The filter to apply to list results (see
   *  Filtering (https://google.aip.dev/160)).
   */
  // const filter = 'abc123'
  /**
   *  Optional. Specifies the ordering of results following
   *  Cloud API
   *  syntax (https://cloud.google.com/apis/design/design_patterns#sorting_order).
   */
  // const orderBy = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callListVodConfigs();

listVodConfigsStream(request, options)

listVodConfigsStream(request?: protos.google.cloud.video.stitcher.v1.IListVodConfigsRequest, options?: CallOptions): Transform;

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

Parameters
Name Description
request IListVodConfigsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Transform

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

listVodStitchDetails(request, options)

listVodStitchDetails(request?: protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsRequest, options?: CallOptions): Promise<[
        protos.google.cloud.video.stitcher.v1.IVodStitchDetail[],
        protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsRequest | null,
        protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsResponse
    ]>;

Returns a list of detailed stitching information of the specified VOD session.

Parameters
Name Description
request IListVodStitchDetailsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ protos.google.cloud.video.stitcher.v1.IVodStitchDetail[], protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsRequest | null, protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsResponse ]>

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

listVodStitchDetails(request, options, callback)

listVodStitchDetails(request: protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsRequest, protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.IVodStitchDetail>): void;
Parameters
Name Description
request IListVodStitchDetailsRequest
options CallOptions
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsRequest, protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.IVodStitchDetail>
Returns
Type Description
void

listVodStitchDetails(request, callback)

listVodStitchDetails(request: protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsRequest, callback: PaginationCallback<protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsRequest, protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.IVodStitchDetail>): void;
Parameters
Name Description
request IListVodStitchDetailsRequest
callback PaginationCallback<protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsRequest, protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsResponse | null | undefined, protos.google.cloud.video.stitcher.v1.IVodStitchDetail>
Returns
Type Description
void

listVodStitchDetailsAsync(request, options)

listVodStitchDetailsAsync(request?: protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.video.stitcher.v1.IVodStitchDetail>;

Equivalent to listVodStitchDetails, but returns an iterable object.

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

Parameters
Name Description
request IListVodStitchDetailsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
AsyncIterable<protos.google.cloud.video.stitcher.v1.IVodStitchDetail>

{Object} An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing VodStitchDetail. 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 VOD session where the stitch details belong to, in the form
   *  of `projects/{project}/locations/{location}/vodSessions/{id}`.
   */
  // const parent = 'abc123'
  /**
   *  The maximum number of items to return.
   */
  // const pageSize = 1234
  /**
   *  The next_page_token value returned from a previous List request, if any.
   */
  // const pageToken = 'abc123'

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

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

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

  callListVodStitchDetails();

listVodStitchDetailsStream(request, options)

listVodStitchDetailsStream(request?: protos.google.cloud.video.stitcher.v1.IListVodStitchDetailsRequest, options?: CallOptions): Transform;

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

Parameters
Name Description
request IListVodStitchDetailsRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Transform

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

liveAdTagDetailPath(project, location, liveSession, liveAdTagDetail)

liveAdTagDetailPath(project: string, location: string, liveSession: string, liveAdTagDetail: string): string;

Return a fully-qualified liveAdTagDetail resource name string.

Parameters
Name Description
project string
location string
liveSession string
liveAdTagDetail string
Returns
Type Description
string

{string} Resource name string.

liveConfigPath(project, location, liveConfig)

liveConfigPath(project: string, location: string, liveConfig: string): string;

Return a fully-qualified liveConfig resource name string.

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

{string} Resource name string.

liveSessionPath(project, location, liveSession)

liveSessionPath(project: string, location: string, liveSession: string): string;

Return a fully-qualified liveSession resource name string.

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

{string} Resource name string.

locationPath(project, location)

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

Return a fully-qualified location resource name string.

Parameters
Name Description
project string
location string
Returns
Type Description
string

{string} Resource name string.

matchCdnKeyFromCdnKeyName(cdnKeyName)

matchCdnKeyFromCdnKeyName(cdnKeyName: string): string | number;

Parse the cdn_key from CdnKey resource.

Parameter
Name Description
cdnKeyName string

A fully-qualified path representing CdnKey resource.

Returns
Type Description
string | number

{string} A string representing the cdn_key.

matchLiveAdTagDetailFromLiveAdTagDetailName(liveAdTagDetailName)

matchLiveAdTagDetailFromLiveAdTagDetailName(liveAdTagDetailName: string): string | number;

Parse the live_ad_tag_detail from LiveAdTagDetail resource.

Parameter
Name Description
liveAdTagDetailName string

A fully-qualified path representing LiveAdTagDetail resource.

Returns
Type Description
string | number

{string} A string representing the live_ad_tag_detail.

matchLiveConfigFromLiveConfigName(liveConfigName)

matchLiveConfigFromLiveConfigName(liveConfigName: string): string | number;

Parse the live_config from LiveConfig resource.

Parameter
Name Description
liveConfigName string

A fully-qualified path representing LiveConfig resource.

Returns
Type Description
string | number

{string} A string representing the live_config.

matchLiveSessionFromLiveAdTagDetailName(liveAdTagDetailName)

matchLiveSessionFromLiveAdTagDetailName(liveAdTagDetailName: string): string | number;

Parse the live_session from LiveAdTagDetail resource.

Parameter
Name Description
liveAdTagDetailName string

A fully-qualified path representing LiveAdTagDetail resource.

Returns
Type Description
string | number

{string} A string representing the live_session.

matchLiveSessionFromLiveSessionName(liveSessionName)

matchLiveSessionFromLiveSessionName(liveSessionName: string): string | number;

Parse the live_session from LiveSession resource.

Parameter
Name Description
liveSessionName string

A fully-qualified path representing LiveSession resource.

Returns
Type Description
string | number

{string} A string representing the live_session.

matchLocationFromCdnKeyName(cdnKeyName)

matchLocationFromCdnKeyName(cdnKeyName: string): string | number;

Parse the location from CdnKey resource.

Parameter
Name Description
cdnKeyName string

A fully-qualified path representing CdnKey resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromLiveAdTagDetailName(liveAdTagDetailName)

matchLocationFromLiveAdTagDetailName(liveAdTagDetailName: string): string | number;

Parse the location from LiveAdTagDetail resource.

Parameter
Name Description
liveAdTagDetailName string

A fully-qualified path representing LiveAdTagDetail resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromLiveConfigName(liveConfigName)

matchLocationFromLiveConfigName(liveConfigName: string): string | number;

Parse the location from LiveConfig resource.

Parameter
Name Description
liveConfigName string

A fully-qualified path representing LiveConfig resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromLiveSessionName(liveSessionName)

matchLocationFromLiveSessionName(liveSessionName: string): string | number;

Parse the location from LiveSession resource.

Parameter
Name Description
liveSessionName string

A fully-qualified path representing LiveSession resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromLocationName(locationName)

matchLocationFromLocationName(locationName: string): string | number;

Parse the location from Location resource.

Parameter
Name Description
locationName string

A fully-qualified path representing Location resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromSlateName(slateName)

matchLocationFromSlateName(slateName: string): string | number;

Parse the location from Slate resource.

Parameter
Name Description
slateName string

A fully-qualified path representing Slate resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromVodAdTagDetailName(vodAdTagDetailName)

matchLocationFromVodAdTagDetailName(vodAdTagDetailName: string): string | number;

Parse the location from VodAdTagDetail resource.

Parameter
Name Description
vodAdTagDetailName string

A fully-qualified path representing VodAdTagDetail resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromVodConfigName(vodConfigName)

matchLocationFromVodConfigName(vodConfigName: string): string | number;

Parse the location from VodConfig resource.

Parameter
Name Description
vodConfigName string

A fully-qualified path representing VodConfig resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromVodSessionName(vodSessionName)

matchLocationFromVodSessionName(vodSessionName: string): string | number;

Parse the location from VodSession resource.

Parameter
Name Description
vodSessionName string

A fully-qualified path representing VodSession resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchLocationFromVodStitchDetailName(vodStitchDetailName)

matchLocationFromVodStitchDetailName(vodStitchDetailName: string): string | number;

Parse the location from VodStitchDetail resource.

Parameter
Name Description
vodStitchDetailName string

A fully-qualified path representing VodStitchDetail resource.

Returns
Type Description
string | number

{string} A string representing the location.

matchProjectFromCdnKeyName(cdnKeyName)

matchProjectFromCdnKeyName(cdnKeyName: string): string | number;

Parse the project from CdnKey resource.

Parameter
Name Description
cdnKeyName string

A fully-qualified path representing CdnKey resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromLiveAdTagDetailName(liveAdTagDetailName)

matchProjectFromLiveAdTagDetailName(liveAdTagDetailName: string): string | number;

Parse the project from LiveAdTagDetail resource.

Parameter
Name Description
liveAdTagDetailName string

A fully-qualified path representing LiveAdTagDetail resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromLiveConfigName(liveConfigName)

matchProjectFromLiveConfigName(liveConfigName: string): string | number;

Parse the project from LiveConfig resource.

Parameter
Name Description
liveConfigName string

A fully-qualified path representing LiveConfig resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromLiveSessionName(liveSessionName)

matchProjectFromLiveSessionName(liveSessionName: string): string | number;

Parse the project from LiveSession resource.

Parameter
Name Description
liveSessionName string

A fully-qualified path representing LiveSession resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromLocationName(locationName)

matchProjectFromLocationName(locationName: string): string | number;

Parse the project from Location resource.

Parameter
Name Description
locationName string

A fully-qualified path representing Location resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromProjectName(projectName)

matchProjectFromProjectName(projectName: string): string | number;

Parse the project from Project resource.

Parameter
Name Description
projectName string

A fully-qualified path representing Project resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromSlateName(slateName)

matchProjectFromSlateName(slateName: string): string | number;

Parse the project from Slate resource.

Parameter
Name Description
slateName string

A fully-qualified path representing Slate resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromVodAdTagDetailName(vodAdTagDetailName)

matchProjectFromVodAdTagDetailName(vodAdTagDetailName: string): string | number;

Parse the project from VodAdTagDetail resource.

Parameter
Name Description
vodAdTagDetailName string

A fully-qualified path representing VodAdTagDetail resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromVodConfigName(vodConfigName)

matchProjectFromVodConfigName(vodConfigName: string): string | number;

Parse the project from VodConfig resource.

Parameter
Name Description
vodConfigName string

A fully-qualified path representing VodConfig resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromVodSessionName(vodSessionName)

matchProjectFromVodSessionName(vodSessionName: string): string | number;

Parse the project from VodSession resource.

Parameter
Name Description
vodSessionName string

A fully-qualified path representing VodSession resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchProjectFromVodStitchDetailName(vodStitchDetailName)

matchProjectFromVodStitchDetailName(vodStitchDetailName: string): string | number;

Parse the project from VodStitchDetail resource.

Parameter
Name Description
vodStitchDetailName string

A fully-qualified path representing VodStitchDetail resource.

Returns
Type Description
string | number

{string} A string representing the project.

matchSlateFromSlateName(slateName)

matchSlateFromSlateName(slateName: string): string | number;

Parse the slate from Slate resource.

Parameter
Name Description
slateName string

A fully-qualified path representing Slate resource.

Returns
Type Description
string | number

{string} A string representing the slate.

matchVodAdTagDetailFromVodAdTagDetailName(vodAdTagDetailName)

matchVodAdTagDetailFromVodAdTagDetailName(vodAdTagDetailName: string): string | number;

Parse the vod_ad_tag_detail from VodAdTagDetail resource.

Parameter
Name Description
vodAdTagDetailName string

A fully-qualified path representing VodAdTagDetail resource.

Returns
Type Description
string | number

{string} A string representing the vod_ad_tag_detail.

matchVodConfigFromVodConfigName(vodConfigName)

matchVodConfigFromVodConfigName(vodConfigName: string): string | number;

Parse the vod_config from VodConfig resource.

Parameter
Name Description
vodConfigName string

A fully-qualified path representing VodConfig resource.

Returns
Type Description
string | number

{string} A string representing the vod_config.

matchVodSessionFromVodAdTagDetailName(vodAdTagDetailName)

matchVodSessionFromVodAdTagDetailName(vodAdTagDetailName: string): string | number;

Parse the vod_session from VodAdTagDetail resource.

Parameter
Name Description
vodAdTagDetailName string

A fully-qualified path representing VodAdTagDetail resource.

Returns
Type Description
string | number

{string} A string representing the vod_session.

matchVodSessionFromVodSessionName(vodSessionName)

matchVodSessionFromVodSessionName(vodSessionName: string): string | number;

Parse the vod_session from VodSession resource.

Parameter
Name Description
vodSessionName string

A fully-qualified path representing VodSession resource.

Returns
Type Description
string | number

{string} A string representing the vod_session.

matchVodSessionFromVodStitchDetailName(vodStitchDetailName)

matchVodSessionFromVodStitchDetailName(vodStitchDetailName: string): string | number;

Parse the vod_session from VodStitchDetail resource.

Parameter
Name Description
vodStitchDetailName string

A fully-qualified path representing VodStitchDetail resource.

Returns
Type Description
string | number

{string} A string representing the vod_session.

matchVodStitchDetailFromVodStitchDetailName(vodStitchDetailName)

matchVodStitchDetailFromVodStitchDetailName(vodStitchDetailName: string): string | number;

Parse the vod_stitch_detail from VodStitchDetail resource.

Parameter
Name Description
vodStitchDetailName string

A fully-qualified path representing VodStitchDetail resource.

Returns
Type Description
string | number

{string} A string representing the vod_stitch_detail.

projectPath(project)

projectPath(project: string): string;

Return a fully-qualified project resource name string.

Parameter
Name Description
project string
Returns
Type Description
string

{string} Resource name string.

slatePath(project, location, slate)

slatePath(project: string, location: string, slate: string): string;

Return a fully-qualified slate resource name string.

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

{string} Resource name string.

updateCdnKey(request, options)

updateCdnKey(request?: protos.google.cloud.video.stitcher.v1.IUpdateCdnKeyRequest, options?: CallOptions): Promise<[
        LROperation<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IOperationMetadata>,
        protos.google.longrunning.IOperation | undefined,
        {} | undefined
    ]>;

Updates the specified CDN key. Only update fields specified in the call method body.

Parameters
Name Description
request IUpdateCdnKeyRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ LROperation<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.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. The CDN key resource which replaces the resource on the server.
   */
  // const cdnKey = {}
  /**
   *  Required. The update mask applies to the resource.
   *  For the `FieldMask` definition, see
   *  https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
   */
  // const updateMask = {}

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callUpdateCdnKey() {
    // Construct request
    const request = {
      cdnKey,
      updateMask,
    };

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

  callUpdateCdnKey();

updateCdnKey(request, options, callback)

updateCdnKey(request: protos.google.cloud.video.stitcher.v1.IUpdateCdnKeyRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IUpdateCdnKeyRequest
options CallOptions
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

updateCdnKey(request, callback)

updateCdnKey(request: protos.google.cloud.video.stitcher.v1.IUpdateCdnKeyRequest, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IUpdateCdnKeyRequest
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.ICdnKey, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

updateLiveConfig(request, options)

updateLiveConfig(request?: protos.google.cloud.video.stitcher.v1.IUpdateLiveConfigRequest, options?: CallOptions): Promise<[
        LROperation<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>,
        protos.google.longrunning.IOperation | undefined,
        {} | undefined
    ]>;

Updates the specified LiveConfig. Only update fields specified in the call method body.

Parameters
Name Description
request IUpdateLiveConfigRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ LROperation<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.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. The LiveConfig resource which replaces the resource on the
   *  server.
   */
  // const liveConfig = {}
  /**
   *  Required. The update mask applies to the resource.
   *  For the `FieldMask` definition, see
   *  https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
   */
  // const updateMask = {}

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callUpdateLiveConfig() {
    // Construct request
    const request = {
      liveConfig,
      updateMask,
    };

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

  callUpdateLiveConfig();

updateLiveConfig(request, options, callback)

updateLiveConfig(request: protos.google.cloud.video.stitcher.v1.IUpdateLiveConfigRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IUpdateLiveConfigRequest
options CallOptions
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

updateLiveConfig(request, callback)

updateLiveConfig(request: protos.google.cloud.video.stitcher.v1.IUpdateLiveConfigRequest, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IUpdateLiveConfigRequest
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.ILiveConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

updateSlate(request, options)

updateSlate(request?: protos.google.cloud.video.stitcher.v1.IUpdateSlateRequest, options?: CallOptions): Promise<[
        LROperation<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IOperationMetadata>,
        protos.google.longrunning.IOperation | undefined,
        {} | undefined
    ]>;

Updates the specified slate.

Parameters
Name Description
request IUpdateSlateRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ LROperation<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.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. The resource with updated fields.
   */
  // const slate = {}
  /**
   *  Required. The update mask which specifies fields which should be updated.
   */
  // const updateMask = {}

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callUpdateSlate() {
    // Construct request
    const request = {
      slate,
      updateMask,
    };

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

  callUpdateSlate();

updateSlate(request, options, callback)

updateSlate(request: protos.google.cloud.video.stitcher.v1.IUpdateSlateRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IUpdateSlateRequest
options CallOptions
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

updateSlate(request, callback)

updateSlate(request: protos.google.cloud.video.stitcher.v1.IUpdateSlateRequest, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IUpdateSlateRequest
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.ISlate, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

updateVodConfig(request, options)

updateVodConfig(request?: protos.google.cloud.video.stitcher.v1.IUpdateVodConfigRequest, options?: CallOptions): Promise<[
        LROperation<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>,
        protos.google.longrunning.IOperation | undefined,
        {} | undefined
    ]>;

Updates the specified VOD config. Only update fields specified in the call method body.

Parameters
Name Description
request IUpdateVodConfigRequest

The request object that will be sent.

options CallOptions

Call options. See CallOptions for more details.

Returns
Type Description
Promise<[ LROperation<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.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. The VOD config resource which replaces the resource on the
   *  server.
   */
  // const vodConfig = {}
  /**
   *  Required. The update mask applies to the resource.
   *  For the `FieldMask` definition, see
   *  https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
   */
  // const updateMask = {}

  // Imports the Stitcher library
  const {VideoStitcherServiceClient} = require('@google-cloud/video-stitcher').v1;

  // Instantiates a client
  const stitcherClient = new VideoStitcherServiceClient();

  async function callUpdateVodConfig() {
    // Construct request
    const request = {
      vodConfig,
      updateMask,
    };

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

  callUpdateVodConfig();

updateVodConfig(request, options, callback)

updateVodConfig(request: protos.google.cloud.video.stitcher.v1.IUpdateVodConfigRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IUpdateVodConfigRequest
options CallOptions
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

updateVodConfig(request, callback)

updateVodConfig(request: protos.google.cloud.video.stitcher.v1.IUpdateVodConfigRequest, callback: Callback<LROperation<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
Parameters
Name Description
request IUpdateVodConfigRequest
callback Callback<LROperation<protos.google.cloud.video.stitcher.v1.IVodConfig, protos.google.cloud.video.stitcher.v1.IOperationMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>
Returns
Type Description
void

vodAdTagDetailPath(project, location, vodSession, vodAdTagDetail)

vodAdTagDetailPath(project: string, location: string, vodSession: string, vodAdTagDetail: string): string;

Return a fully-qualified vodAdTagDetail resource name string.

Parameters
Name Description
project string
location string
vodSession string
vodAdTagDetail string
Returns
Type Description
string

{string} Resource name string.

vodConfigPath(project, location, vodConfig)

vodConfigPath(project: string, location: string, vodConfig: string): string;

Return a fully-qualified vodConfig resource name string.

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

{string} Resource name string.

vodSessionPath(project, location, vodSession)

vodSessionPath(project: string, location: string, vodSession: string): string;

Return a fully-qualified vodSession resource name string.

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

{string} Resource name string.

vodStitchDetailPath(project, location, vodSession, vodStitchDetail)

vodStitchDetailPath(project: string, location: string, vodSession: string, vodStitchDetail: string): string;

Return a fully-qualified vodStitchDetail resource name string.

Parameters
Name Description
project string
location string
vodSession string
vodStitchDetail string
Returns
Type Description
string

{string} Resource name string.