Constructor
new VideoStitcherServiceClient(optionsopt)
Construct an instance of VideoStitcherServiceClient.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
object |
<optional> |
The configuration object. The options accepted by the constructor are described in detail in this document. The common options are: Properties
|
Members
apiEndpoint
The DNS address for this API service - same as servicePath(), exists for compatibility reasons.
port
The port for this API service.
scopes
The scopes needed to make gRPC calls for every method defined in this service.
servicePath
The DNS address for this API service.
Methods
cdnKeyPath(project, location, cdn_key) → {string}
Return a fully-qualified cdnKey resource name string.
Parameters:
| Name | Type | Description |
|---|---|---|
project |
string | |
location |
string | |
cdn_key |
string |
Returns:
| Type | Description |
|---|---|
| string |
Resource name string. |
close() → {Promise}
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 |
A promise that resolves when the client is closed. |
getProjectId() → {Promise}
Return the project ID used by this class.
Returns:
| Type | Description |
|---|---|
| Promise |
A promise that resolves to string containing the project ID. |
initialize() → {Promise}
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 |
A promise that resolves to an authenticated service stub. |
listCdnKeysAsync(request, optionsopt) → {Object}
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 | Type | Attributes | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
| Type | Description |
|---|---|
| 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, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase(), but returns a NodeJS Stream object.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
| Type | Description |
|---|---|
| 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 |
listLiveAdTagDetailsAsync(request, optionsopt) → {Object}
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 | Type | Attributes | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
| Type | Description |
|---|---|
| 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
/**
* 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/stitcher').v1;
// Instantiates a client
const stitcherClient = new VideoStitcherServiceClient();
async function callListLiveAdTagDetails() {
// Construct request
const request = {
parent,
};
// Run request
const iterable = await stitcherClient.listLiveAdTagDetailsAsync(request);
for await (const response of iterable) {
console.log(response);
}
}
callListLiveAdTagDetails();
listLiveAdTagDetailsStream(request, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase(), but returns a NodeJS Stream object.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
| Type | Description |
|---|---|
| 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 |
listSlatesAsync(request, optionsopt) → {Object}
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 | Type | Attributes | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
| Type | Description |
|---|---|
| Object |
An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing Slate. 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 to list slates, in the form of `projects/{project_number}`.
*/
// 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/stitcher').v1;
// Instantiates a client
const stitcherClient = new VideoStitcherServiceClient();
async function callListSlates() {
// Construct request
const request = {
parent,
};
// Run request
const iterable = await stitcherClient.listSlatesAsync(request);
for await (const response of iterable) {
console.log(response);
}
}
callListSlates();
listSlatesStream(request, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase(), but returns a NodeJS Stream object.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
| Type | Description |
|---|---|
| Stream |
An object stream which emits an object representing Slate 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(request, optionsopt) → {Object}
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 | Type | Attributes | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
| Type | Description |
|---|---|
| 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
/**
* 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/stitcher').v1;
// Instantiates a client
const stitcherClient = new VideoStitcherServiceClient();
async function callListVodAdTagDetails() {
// Construct request
const request = {
parent,
};
// Run request
const iterable = await stitcherClient.listVodAdTagDetailsAsync(request);
for await (const response of iterable) {
console.log(response);
}
}
callListVodAdTagDetails();
listVodAdTagDetailsStream(request, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase(), but returns a NodeJS Stream object.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
| Type | Description |
|---|---|
| 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 |
listVodStitchDetailsAsync(request, optionsopt) → {Object}
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 | Type | Attributes | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
| Type | Description |
|---|---|
| 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
/**
* 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/stitcher').v1;
// Instantiates a client
const stitcherClient = new VideoStitcherServiceClient();
async function callListVodStitchDetails() {
// Construct request
const request = {
parent,
};
// Run request
const iterable = await stitcherClient.listVodStitchDetailsAsync(request);
for await (const response of iterable) {
console.log(response);
}
}
callListVodStitchDetails();
listVodStitchDetailsStream(request, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase(), but returns a NodeJS Stream object.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
| Type | Description |
|---|---|
| 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 |
liveAdTagDetailPath(project, location, live_session, live_ad_tag_detail) → {string}
Return a fully-qualified liveAdTagDetail resource name string.
Parameters:
| Name | Type | Description |
|---|---|---|
project |
string | |
location |
string | |
live_session |
string | |
live_ad_tag_detail |
string |
Returns:
| Type | Description |
|---|---|
| string |
Resource name string. |
liveSessionPath(project, location, live_session) → {string}
Return a fully-qualified liveSession resource name string.
Parameters:
| Name | Type | Description |
|---|---|---|
project |
string | |
location |
string | |
live_session |
string |
Returns:
| Type | Description |
|---|---|
| string |
Resource name string. |
locationPath(project, location) → {string}
Return a fully-qualified location resource name string.
Parameters:
| Name | Type | Description |
|---|---|---|
project |
string | |
location |
string |
Returns:
| Type | Description |
|---|---|
| string |
Resource name string. |
matchCdnKeyFromCdnKeyName(cdnKeyName) → {string}
Parse the cdn_key from CdnKey resource.
Parameters:
| Name | Type | Description |
|---|---|---|
cdnKeyName |
string |
A fully-qualified path representing CdnKey resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the cdn_key. |
matchLiveAdTagDetailFromLiveAdTagDetailName(liveAdTagDetailName) → {string}
Parse the live_ad_tag_detail from LiveAdTagDetail resource.
Parameters:
| Name | Type | Description |
|---|---|---|
liveAdTagDetailName |
string |
A fully-qualified path representing LiveAdTagDetail resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the live_ad_tag_detail. |
matchLiveSessionFromLiveAdTagDetailName(liveAdTagDetailName) → {string}
Parse the live_session from LiveAdTagDetail resource.
Parameters:
| Name | Type | Description |
|---|---|---|
liveAdTagDetailName |
string |
A fully-qualified path representing LiveAdTagDetail resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the live_session. |
matchLiveSessionFromLiveSessionName(liveSessionName) → {string}
Parse the live_session from LiveSession resource.
Parameters:
| Name | Type | Description |
|---|---|---|
liveSessionName |
string |
A fully-qualified path representing LiveSession resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the live_session. |
matchLocationFromCdnKeyName(cdnKeyName) → {string}
Parse the location from CdnKey resource.
Parameters:
| Name | Type | Description |
|---|---|---|
cdnKeyName |
string |
A fully-qualified path representing CdnKey resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the location. |
matchLocationFromLiveAdTagDetailName(liveAdTagDetailName) → {string}
Parse the location from LiveAdTagDetail resource.
Parameters:
| Name | Type | Description |
|---|---|---|
liveAdTagDetailName |
string |
A fully-qualified path representing LiveAdTagDetail resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the location. |
matchLocationFromLiveSessionName(liveSessionName) → {string}
Parse the location from LiveSession resource.
Parameters:
| Name | Type | Description |
|---|---|---|
liveSessionName |
string |
A fully-qualified path representing LiveSession resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the location. |
matchLocationFromLocationName(locationName) → {string}
Parse the location from Location resource.
Parameters:
| Name | Type | Description |
|---|---|---|
locationName |
string |
A fully-qualified path representing Location resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the location. |
matchLocationFromSlateName(slateName) → {string}
Parse the location from Slate resource.
Parameters:
| Name | Type | Description |
|---|---|---|
slateName |
string |
A fully-qualified path representing Slate resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the location. |
matchLocationFromVodAdTagDetailName(vodAdTagDetailName) → {string}
Parse the location from VodAdTagDetail resource.
Parameters:
| Name | Type | Description |
|---|---|---|
vodAdTagDetailName |
string |
A fully-qualified path representing VodAdTagDetail resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the location. |
matchLocationFromVodSessionName(vodSessionName) → {string}
Parse the location from VodSession resource.
Parameters:
| Name | Type | Description |
|---|---|---|
vodSessionName |
string |
A fully-qualified path representing VodSession resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the location. |
matchLocationFromVodStitchDetailName(vodStitchDetailName) → {string}
Parse the location from VodStitchDetail resource.
Parameters:
| Name | Type | Description |
|---|---|---|
vodStitchDetailName |
string |
A fully-qualified path representing VodStitchDetail resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the location. |
matchProjectFromCdnKeyName(cdnKeyName) → {string}
Parse the project from CdnKey resource.
Parameters:
| Name | Type | Description |
|---|---|---|
cdnKeyName |
string |
A fully-qualified path representing CdnKey resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the project. |
matchProjectFromLiveAdTagDetailName(liveAdTagDetailName) → {string}
Parse the project from LiveAdTagDetail resource.
Parameters:
| Name | Type | Description |
|---|---|---|
liveAdTagDetailName |
string |
A fully-qualified path representing LiveAdTagDetail resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the project. |
matchProjectFromLiveSessionName(liveSessionName) → {string}
Parse the project from LiveSession resource.
Parameters:
| Name | Type | Description |
|---|---|---|
liveSessionName |
string |
A fully-qualified path representing LiveSession resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the project. |
matchProjectFromLocationName(locationName) → {string}
Parse the project from Location resource.
Parameters:
| Name | Type | Description |
|---|---|---|
locationName |
string |
A fully-qualified path representing Location resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the project. |
matchProjectFromProjectName(projectName) → {string}
Parse the project from Project resource.
Parameters:
| Name | Type | Description |
|---|---|---|
projectName |
string |
A fully-qualified path representing Project resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the project. |
matchProjectFromSlateName(slateName) → {string}
Parse the project from Slate resource.
Parameters:
| Name | Type | Description |
|---|---|---|
slateName |
string |
A fully-qualified path representing Slate resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the project. |
matchProjectFromVodAdTagDetailName(vodAdTagDetailName) → {string}
Parse the project from VodAdTagDetail resource.
Parameters:
| Name | Type | Description |
|---|---|---|
vodAdTagDetailName |
string |
A fully-qualified path representing VodAdTagDetail resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the project. |
matchProjectFromVodSessionName(vodSessionName) → {string}
Parse the project from VodSession resource.
Parameters:
| Name | Type | Description |
|---|---|---|
vodSessionName |
string |
A fully-qualified path representing VodSession resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the project. |
matchProjectFromVodStitchDetailName(vodStitchDetailName) → {string}
Parse the project from VodStitchDetail resource.
Parameters:
| Name | Type | Description |
|---|---|---|
vodStitchDetailName |
string |
A fully-qualified path representing VodStitchDetail resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the project. |
matchSlateFromSlateName(slateName) → {string}
Parse the slate from Slate resource.
Parameters:
| Name | Type | Description |
|---|---|---|
slateName |
string |
A fully-qualified path representing Slate resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the slate. |
matchVodAdTagDetailFromVodAdTagDetailName(vodAdTagDetailName) → {string}
Parse the vod_ad_tag_detail from VodAdTagDetail resource.
Parameters:
| Name | Type | Description |
|---|---|---|
vodAdTagDetailName |
string |
A fully-qualified path representing VodAdTagDetail resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the vod_ad_tag_detail. |
matchVodSessionFromVodAdTagDetailName(vodAdTagDetailName) → {string}
Parse the vod_session from VodAdTagDetail resource.
Parameters:
| Name | Type | Description |
|---|---|---|
vodAdTagDetailName |
string |
A fully-qualified path representing VodAdTagDetail resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the vod_session. |
matchVodSessionFromVodSessionName(vodSessionName) → {string}
Parse the vod_session from VodSession resource.
Parameters:
| Name | Type | Description |
|---|---|---|
vodSessionName |
string |
A fully-qualified path representing VodSession resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the vod_session. |
matchVodSessionFromVodStitchDetailName(vodStitchDetailName) → {string}
Parse the vod_session from VodStitchDetail resource.
Parameters:
| Name | Type | Description |
|---|---|---|
vodStitchDetailName |
string |
A fully-qualified path representing VodStitchDetail resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the vod_session. |
matchVodStitchDetailFromVodStitchDetailName(vodStitchDetailName) → {string}
Parse the vod_stitch_detail from VodStitchDetail resource.
Parameters:
| Name | Type | Description |
|---|---|---|
vodStitchDetailName |
string |
A fully-qualified path representing VodStitchDetail resource. |
Returns:
| Type | Description |
|---|---|
| string |
A string representing the vod_stitch_detail. |
projectPath(project) → {string}
Return a fully-qualified project resource name string.
Parameters:
| Name | Type | Description |
|---|---|---|
project |
string |
Returns:
| Type | Description |
|---|---|
| string |
Resource name string. |
slatePath(project, location, slate) → {string}
Return a fully-qualified slate resource name string.
Parameters:
| Name | Type | Description |
|---|---|---|
project |
string | |
location |
string | |
slate |
string |
Returns:
| Type | Description |
|---|---|
| string |
Resource name string. |
vodAdTagDetailPath(project, location, vod_session, vod_ad_tag_detail) → {string}
Return a fully-qualified vodAdTagDetail resource name string.
Parameters:
| Name | Type | Description |
|---|---|---|
project |
string | |
location |
string | |
vod_session |
string | |
vod_ad_tag_detail |
string |
Returns:
| Type | Description |
|---|---|
| string |
Resource name string. |
vodSessionPath(project, location, vod_session) → {string}
Return a fully-qualified vodSession resource name string.
Parameters:
| Name | Type | Description |
|---|---|---|
project |
string | |
location |
string | |
vod_session |
string |
Returns:
| Type | Description |
|---|---|
| string |
Resource name string. |
vodStitchDetailPath(project, location, vod_session, vod_stitch_detail) → {string}
Return a fully-qualified vodStitchDetail resource name string.
Parameters:
| Name | Type | Description |
|---|---|---|
project |
string | |
location |
string | |
vod_session |
string | |
vod_stitch_detail |
string |
Returns:
| Type | Description |
|---|---|
| string |
Resource name string. |