Reference documentation and code samples for the Google Cloud Video Stitcher V1 Client class VideoStitcherServiceClient.
Service Description: 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.
This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:
$videoStitcherServiceClient = new VideoStitcherServiceClient();
try {
$formattedParent = $videoStitcherServiceClient->locationName('[PROJECT]', '[LOCATION]');
$cdnKey = new CdnKey();
$cdnKeyId = 'cdn_key_id';
$operationResponse = $videoStitcherServiceClient->createCdnKey($formattedParent, $cdnKey, $cdnKeyId);
$operationResponse->pollUntilComplete();
if ($operationResponse->operationSucceeded()) {
$result = $operationResponse->getResult();
// doSomethingWith($result)
} else {
$error = $operationResponse->getError();
// handleError($error)
}
// Alternatively:
// start the operation, keep the operation name, and resume later
$operationResponse = $videoStitcherServiceClient->createCdnKey($formattedParent, $cdnKey, $cdnKeyId);
$operationName = $operationResponse->getName();
// ... do other work
$newOperationResponse = $videoStitcherServiceClient->resumeOperation($operationName, 'createCdnKey');
while (!$newOperationResponse->isDone()) {
// ... do other work
$newOperationResponse->reload();
}
if ($newOperationResponse->operationSucceeded()) {
$result = $newOperationResponse->getResult();
// doSomethingWith($result)
} else {
$error = $newOperationResponse->getError();
// handleError($error)
}
} finally {
$videoStitcherServiceClient->close();
}
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parseName method to extract the individual identifiers contained within formatted names that are returned by the API.
Methods
cdnKeyName
Formats a string containing the fully-qualified path to represent a cdn_key resource.
project
string
location
string
cdnKey
string
string
liveAdTagDetailName
Formats a string containing the fully-qualified path to represent a live_ad_tag_detail resource.
project
string
location
string
liveSession
string
liveAdTagDetail
string
string
liveConfigName
Formats a string containing the fully-qualified path to represent a live_config resource.
project
string
location
string
liveConfig
string
string
liveSessionName
Formats a string containing the fully-qualified path to represent a live_session resource.
project
string
location
string
liveSession
string
string
locationName
Formats a string containing the fully-qualified path to represent a location resource.
project
string
location
string
string
slateName
Formats a string containing the fully-qualified path to represent a slate resource.
project
string
location
string
slate
string
string
vodAdTagDetailName
Formats a string containing the fully-qualified path to represent a vod_ad_tag_detail resource.
project
string
location
string
vodSession
string
vodAdTagDetail
string
string
vodSessionName
Formats a string containing the fully-qualified path to represent a vod_session resource.
project
string
location
string
vodSession
string
string
vodStitchDetailName
Formats a string containing the fully-qualified path to represent a vod_stitch_detail resource.
project
string
location
string
vodSession
string
vodStitchDetail
string
string
parseName
Parses a formatted name string and returns an associative array of the components in the name.
The following name formats are supported: Template: Pattern
- cdnKey: projects/{project}/locations/{location}/cdnKeys/{cdn_key}
- liveAdTagDetail: projects/{project}/locations/{location}/liveSessions/{live_session}/liveAdTagDetails/{live_ad_tag_detail}
- liveConfig: projects/{project}/locations/{location}/liveConfigs/{live_config}
- liveSession: projects/{project}/locations/{location}/liveSessions/{live_session}
- location: projects/{project}/locations/{location}
- slate: projects/{project}/locations/{location}/slates/{slate}
- vodAdTagDetail: projects/{project}/locations/{location}/vodSessions/{vod_session}/vodAdTagDetails/{vod_ad_tag_detail}
- vodSession: projects/{project}/locations/{location}/vodSessions/{vod_session}
- vodStitchDetail: projects/{project}/locations/{location}/vodSessions/{vod_session}/vodStitchDetails/{vod_stitch_detail}
The optional $template argument can be supplied to specify a particular pattern, and must match one of the templates listed above. If no $template argument is provided, or if the $template argument does not match one of the templates listed, then parseName will check each of the supported templates, and return the first match.
formattedName
string
The formatted name string
template
string
Optional name of template to match
array
getOperationsClient
Return an OperationsClient object with the same endpoint as $this.
resumeOperation
Resume an existing long running operation that was previously started by a long running API method. If $methodName is not provided, or does not match a long running API method, then the operation can still be resumed, but the OperationResponse object will not deserialize the final response.
operationName
string
The name of the long running operation
methodName
string
The name of the method used to start the operation
__construct
Constructor.
options
array
Optional. Options for configuring the service API wrapper.
↳ apiEndpoint
string
The address of the API remote host. May optionally include the port, formatted as "
↳ credentials
string|array|FetchAuthTokenInterface|CredentialsWrapper
The credentials to be used by the client to authorize API calls. This option accepts either a path to a credentials file, or a decoded credentials file as a PHP array. Advanced usage : In addition, this option can also accept a pre-constructed Google\Auth\FetchAuthTokenInterface object or Google\ApiCore\CredentialsWrapper object. Note that when one of these objects are provided, any settings in $credentialsConfig will be ignored.
↳ credentialsConfig
array
Options used to configure credentials, including auth token caching, for the client. For a full list of supporting configuration options, see Google\ApiCore\CredentialsWrapper::build() .
↳ disableRetries
bool
Determines whether or not retries defined by the client configuration should be disabled. Defaults to false
.
↳ clientConfig
string|array
Client method configuration, including retry settings. This option can be either a path to a JSON file, or a PHP array containing the decoded JSON data. By default this settings points to the default client config file, which is provided in the resources folder.
↳ transport
string|TransportInterface
The transport used for executing network requests. May be either the string rest
or grpc
. Defaults to grpc
if gRPC support is detected on the system. Advanced usage
: Additionally, it is possible to pass in an already instantiated Google\ApiCore\Transport\TransportInterface
object. Note that when this object is provided, any settings in $transportConfig, and any $apiEndpoint setting, will be ignored.
↳ transportConfig
array
Configuration options that will be used to construct the transport. Options for each supported transport type should be passed in a key for that transport. For example: $transportConfig = [ 'grpc' => [...], 'rest' => [...], ]; See the Google\ApiCore\Transport\GrpcTransport::build() and Google\ApiCore\Transport\RestTransport::build() methods for the supported options.
↳ clientCertSource
callable
A callable which returns the client cert as a string. This can be used to provide a certificate and private key to the transport layer for mTLS.
createCdnKey
Creates a new CDN key.
parent
string
Required. The project in which the CDN key should be created, in the form
of projects/{project_number}/locations/{location}
.
cdnKey
cdnKeyId
string
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.
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Video\Stitcher\V1\CdnKey;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Rpc\Status;
/**
* @param string $formattedParent The project in which the CDN key should be created, in the form
* of `projects/{project_number}/locations/{location}`. Please see
* {@see VideoStitcherServiceClient::locationName()} for help formatting this field.
* @param string $cdnKeyId 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.
*/
function create_cdn_key_sample(string $formattedParent, string $cdnKeyId): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Prepare any non-scalar elements to be passed along with the request.
$cdnKey = new CdnKey();
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $videoStitcherServiceClient->createCdnKey($formattedParent, $cdnKey, $cdnKeyId);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var CdnKey $result */
$result = $response->getResult();
printf('Operation successful with response data: %s' . PHP_EOL, $result->serializeToJsonString());
} else {
/** @var Status $error */
$error = $response->getError();
printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = VideoStitcherServiceClient::locationName('[PROJECT]', '[LOCATION]');
$cdnKeyId = '[CDN_KEY_ID]';
create_cdn_key_sample($formattedParent, $cdnKeyId);
}
createLiveConfig
Registers the live config with the provided unique ID in the specified region.
parent
string
Required. The project in which the live config should be created, in
the form of projects/{project_number}/locations/{location}
.
liveConfigId
string
Required. The unique identifier ID to use for the live config.
liveConfig
optionalArgs
array
Optional.
↳ requestId
string
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)
.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Video\Stitcher\V1\AdTracking;
use Google\Cloud\Video\Stitcher\V1\LiveConfig;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Rpc\Status;
/**
* @param string $formattedParent The project in which the live config should be created, in
* the form of `projects/{project_number}/locations/{location}`. Please see
* {@see VideoStitcherServiceClient::locationName()} for help formatting this field.
* @param string $liveConfigId The unique identifier ID to use for the live config.
* @param string $liveConfigSourceUri Source URI for the live stream manifest.
* @param int $liveConfigAdTracking Determines how the ads are tracked. If
* [gam_live_config][google.cloud.video.stitcher.v1.LiveConfig.gam_live_config]
* is set, the value must be `CLIENT` because the IMA SDK handles ad tracking.
*/
function create_live_config_sample(
string $formattedParent,
string $liveConfigId,
string $liveConfigSourceUri,
int $liveConfigAdTracking
): void {
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Prepare any non-scalar elements to be passed along with the request.
$liveConfig = (new LiveConfig())
->setSourceUri($liveConfigSourceUri)
->setAdTracking($liveConfigAdTracking);
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $videoStitcherServiceClient->createLiveConfig(
$formattedParent,
$liveConfigId,
$liveConfig
);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var LiveConfig $result */
$result = $response->getResult();
printf('Operation successful with response data: %s' . PHP_EOL, $result->serializeToJsonString());
} else {
/** @var Status $error */
$error = $response->getError();
printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = VideoStitcherServiceClient::locationName('[PROJECT]', '[LOCATION]');
$liveConfigId = '[LIVE_CONFIG_ID]';
$liveConfigSourceUri = '[SOURCE_URI]';
$liveConfigAdTracking = AdTracking::AD_TRACKING_UNSPECIFIED;
create_live_config_sample(
$formattedParent,
$liveConfigId,
$liveConfigSourceUri,
$liveConfigAdTracking
);
}
createLiveSession
Creates a new live session.
parent
string
Required. The project and location in which the live session should be
created, in the form of projects/{project_number}/locations/{location}
.
liveSession
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\Cloud\Video\Stitcher\V1\LiveSession;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
/**
* @param string $formattedParent The project and location in which the live session should be
* created, in the form of `projects/{project_number}/locations/{location}`. Please see
* {@see VideoStitcherServiceClient::liveSessionName()} for help formatting this field.
* @param string $formattedLiveSessionLiveConfig The resource name of the live config for this session, in the
* form of `projects/{project}/locations/{location}/liveConfigs/{id}`. Please see
* {@see VideoStitcherServiceClient::liveConfigName()} for help formatting this field.
*/
function create_live_session_sample(
string $formattedParent,
string $formattedLiveSessionLiveConfig
): void {
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Prepare any non-scalar elements to be passed along with the request.
$liveSession = (new LiveSession())
->setLiveConfig($formattedLiveSessionLiveConfig);
// Call the API and handle any network failures.
try {
/** @var LiveSession $response */
$response = $videoStitcherServiceClient->createLiveSession($formattedParent, $liveSession);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = VideoStitcherServiceClient::liveSessionName(
'[PROJECT]',
'[LOCATION]',
'[LIVE_SESSION]'
);
$formattedLiveSessionLiveConfig = VideoStitcherServiceClient::liveConfigName(
'[PROJECT]',
'[LOCATION]',
'[LIVE_CONFIG]'
);
create_live_session_sample($formattedParent, $formattedLiveSessionLiveConfig);
}
createSlate
Creates a slate.
parent
string
Required. The project in which the slate should be created, in the form of projects/{project_number}/locations/{location}
.
slateId
string
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.
slate
optionalArgs
array
Optional.
↳ requestId
string
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)
.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Video\Stitcher\V1\Slate;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Rpc\Status;
/**
* @param string $formattedParent The project in which the slate should be created, in the form of
* `projects/{project_number}/locations/{location}`. Please see
* {@see VideoStitcherServiceClient::locationName()} for help formatting this field.
* @param string $slateId 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.
*/
function create_slate_sample(string $formattedParent, string $slateId): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Prepare any non-scalar elements to be passed along with the request.
$slate = new Slate();
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $videoStitcherServiceClient->createSlate($formattedParent, $slateId, $slate);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var Slate $result */
$result = $response->getResult();
printf('Operation successful with response data: %s' . PHP_EOL, $result->serializeToJsonString());
} else {
/** @var Status $error */
$error = $response->getError();
printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = VideoStitcherServiceClient::locationName('[PROJECT]', '[LOCATION]');
$slateId = '[SLATE_ID]';
create_slate_sample($formattedParent, $slateId);
}
createVodSession
Creates a client side playback VOD session and returns the full tracking and playback metadata of the session.
parent
string
Required. The project and location in which the VOD session should be
created, in the form of projects/{project_number}/locations/{location}
.
vodSession
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\Cloud\Video\Stitcher\V1\AdTracking;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Cloud\Video\Stitcher\V1\VodSession;
/**
* @param string $formattedParent The project and location in which the VOD session should be
* created, in the form of `projects/{project_number}/locations/{location}`. Please see
* {@see VideoStitcherServiceClient::locationName()} for help formatting this field.
* @param string $vodSessionSourceUri URI of the media to stitch.
* @param string $vodSessionAdTagUri Ad tag URI.
* @param int $vodSessionAdTracking Determines how the ad should be tracked. If
* [gam_vod_config][google.cloud.video.stitcher.v1.VodSession.gam_vod_config]
* is set, the value must be `CLIENT` because the IMA SDK handles ad tracking.
*/
function create_vod_session_sample(
string $formattedParent,
string $vodSessionSourceUri,
string $vodSessionAdTagUri,
int $vodSessionAdTracking
): void {
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Prepare any non-scalar elements to be passed along with the request.
$vodSession = (new VodSession())
->setSourceUri($vodSessionSourceUri)
->setAdTagUri($vodSessionAdTagUri)
->setAdTracking($vodSessionAdTracking);
// Call the API and handle any network failures.
try {
/** @var VodSession $response */
$response = $videoStitcherServiceClient->createVodSession($formattedParent, $vodSession);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = VideoStitcherServiceClient::locationName('[PROJECT]', '[LOCATION]');
$vodSessionSourceUri = '[SOURCE_URI]';
$vodSessionAdTagUri = '[AD_TAG_URI]';
$vodSessionAdTracking = AdTracking::AD_TRACKING_UNSPECIFIED;
create_vod_session_sample(
$formattedParent,
$vodSessionSourceUri,
$vodSessionAdTagUri,
$vodSessionAdTracking
);
}
deleteCdnKey
Deletes the specified CDN key.
name
string
Required. The name of the CDN key to be deleted, in the form of projects/{project_number}/locations/{location}/cdnKeys/{id}
.
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Rpc\Status;
/**
* @param string $formattedName The name of the CDN key to be deleted, in the form of
* `projects/{project_number}/locations/{location}/cdnKeys/{id}`. Please see
* {@see VideoStitcherServiceClient::cdnKeyName()} for help formatting this field.
*/
function delete_cdn_key_sample(string $formattedName): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $videoStitcherServiceClient->deleteCdnKey($formattedName);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
printf('Operation completed successfully.' . PHP_EOL);
} else {
/** @var Status $error */
$error = $response->getError();
printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedName = VideoStitcherServiceClient::cdnKeyName('[PROJECT]', '[LOCATION]', '[CDN_KEY]');
delete_cdn_key_sample($formattedName);
}
deleteLiveConfig
Deletes the specified live config.
name
string
Required. The name of the live config to be deleted, in the form of projects/{project_number}/locations/{location}/liveConfigs/{id}
.
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Rpc\Status;
/**
* @param string $formattedName The name of the live config to be deleted, in the form of
* `projects/{project_number}/locations/{location}/liveConfigs/{id}`. Please see
* {@see VideoStitcherServiceClient::liveConfigName()} for help formatting this field.
*/
function delete_live_config_sample(string $formattedName): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $videoStitcherServiceClient->deleteLiveConfig($formattedName);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
printf('Operation completed successfully.' . PHP_EOL);
} else {
/** @var Status $error */
$error = $response->getError();
printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedName = VideoStitcherServiceClient::liveConfigName(
'[PROJECT]',
'[LOCATION]',
'[LIVE_CONFIG]'
);
delete_live_config_sample($formattedName);
}
deleteSlate
Deletes the specified slate.
name
string
Required. The name of the slate to be deleted, in the form of projects/{project_number}/locations/{location}/slates/{id}
.
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Rpc\Status;
/**
* @param string $formattedName The name of the slate to be deleted, in the form of
* `projects/{project_number}/locations/{location}/slates/{id}`. Please see
* {@see VideoStitcherServiceClient::slateName()} for help formatting this field.
*/
function delete_slate_sample(string $formattedName): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $videoStitcherServiceClient->deleteSlate($formattedName);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
printf('Operation completed successfully.' . PHP_EOL);
} else {
/** @var Status $error */
$error = $response->getError();
printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedName = VideoStitcherServiceClient::slateName('[PROJECT]', '[LOCATION]', '[SLATE]');
delete_slate_sample($formattedName);
}
getCdnKey
Returns the specified CDN key.
name
string
Required. The name of the CDN key to be retrieved, in the form of projects/{project}/locations/{location}/cdnKeys/{id}
.
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\Cloud\Video\Stitcher\V1\CdnKey;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
/**
* @param string $formattedName The name of the CDN key to be retrieved, in the form of
* `projects/{project}/locations/{location}/cdnKeys/{id}`. Please see
* {@see VideoStitcherServiceClient::cdnKeyName()} for help formatting this field.
*/
function get_cdn_key_sample(string $formattedName): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var CdnKey $response */
$response = $videoStitcherServiceClient->getCdnKey($formattedName);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedName = VideoStitcherServiceClient::cdnKeyName('[PROJECT]', '[LOCATION]', '[CDN_KEY]');
get_cdn_key_sample($formattedName);
}
getLiveAdTagDetail
Returns the specified ad tag detail for the specified live session.
name
string
Required. The resource name in the form of projects/{project}/locations/{location}/liveSessions/{live_session}/liveAdTagDetails/{live_ad_tag_detail}
.
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\Cloud\Video\Stitcher\V1\LiveAdTagDetail;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
/**
* @param string $formattedName The resource name in the form of
* `projects/{project}/locations/{location}/liveSessions/{live_session}/liveAdTagDetails/{live_ad_tag_detail}`. Please see
* {@see VideoStitcherServiceClient::liveAdTagDetailName()} for help formatting this field.
*/
function get_live_ad_tag_detail_sample(string $formattedName): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var LiveAdTagDetail $response */
$response = $videoStitcherServiceClient->getLiveAdTagDetail($formattedName);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedName = VideoStitcherServiceClient::liveAdTagDetailName(
'[PROJECT]',
'[LOCATION]',
'[LIVE_SESSION]',
'[LIVE_AD_TAG_DETAIL]'
);
get_live_ad_tag_detail_sample($formattedName);
}
getLiveConfig
Returns the specified live config managed by the Video Stitcher service.
name
string
Required. The name of the live config to be retrieved, in the form
of projects/{project_number}/locations/{location}/liveConfigs/{id}
.
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\Cloud\Video\Stitcher\V1\LiveConfig;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
/**
* @param string $formattedName The name of the live config to be retrieved, in the form
* of
* `projects/{project_number}/locations/{location}/liveConfigs/{id}`. Please see
* {@see VideoStitcherServiceClient::liveConfigName()} for help formatting this field.
*/
function get_live_config_sample(string $formattedName): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var LiveConfig $response */
$response = $videoStitcherServiceClient->getLiveConfig($formattedName);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedName = VideoStitcherServiceClient::liveConfigName(
'[PROJECT]',
'[LOCATION]',
'[LIVE_CONFIG]'
);
get_live_config_sample($formattedName);
}
getLiveSession
Returns the details for the specified live session.
name
string
Required. The name of the live session, in the form of projects/{project_number}/locations/{location}/liveSessions/{id}
.
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\Cloud\Video\Stitcher\V1\LiveSession;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
/**
* @param string $formattedName The name of the live session, in the form of
* `projects/{project_number}/locations/{location}/liveSessions/{id}`. Please see
* {@see VideoStitcherServiceClient::liveSessionName()} for help formatting this field.
*/
function get_live_session_sample(string $formattedName): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var LiveSession $response */
$response = $videoStitcherServiceClient->getLiveSession($formattedName);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedName = VideoStitcherServiceClient::liveSessionName(
'[PROJECT]',
'[LOCATION]',
'[LIVE_SESSION]'
);
get_live_session_sample($formattedName);
}
getSlate
Returns the specified slate.
name
string
Required. The name of the slate to be retrieved, of the slate, in the form
of projects/{project_number}/locations/{location}/slates/{id}
.
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\Cloud\Video\Stitcher\V1\Slate;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
/**
* @param string $formattedName The name of the slate to be retrieved, of the slate, in the form
* of `projects/{project_number}/locations/{location}/slates/{id}`. Please see
* {@see VideoStitcherServiceClient::slateName()} for help formatting this field.
*/
function get_slate_sample(string $formattedName): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var Slate $response */
$response = $videoStitcherServiceClient->getSlate($formattedName);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedName = VideoStitcherServiceClient::slateName('[PROJECT]', '[LOCATION]', '[SLATE]');
get_slate_sample($formattedName);
}
getVodAdTagDetail
Returns the specified ad tag detail for the specified VOD session.
name
string
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}
.
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Cloud\Video\Stitcher\V1\VodAdTagDetail;
/**
* @param string $formattedName 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}`. Please see
* {@see VideoStitcherServiceClient::vodAdTagDetailName()} for help formatting this field.
*/
function get_vod_ad_tag_detail_sample(string $formattedName): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var VodAdTagDetail $response */
$response = $videoStitcherServiceClient->getVodAdTagDetail($formattedName);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedName = VideoStitcherServiceClient::vodAdTagDetailName(
'[PROJECT]',
'[LOCATION]',
'[VOD_SESSION]',
'[VOD_AD_TAG_DETAIL]'
);
get_vod_ad_tag_detail_sample($formattedName);
}
getVodSession
Returns the full tracking, playback metadata, and relevant ad-ops logs for the specified VOD session.
name
string
Required. The name of the VOD session to be retrieved, in the form of projects/{project_number}/locations/{location}/vodSessions/{id}
.
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Cloud\Video\Stitcher\V1\VodSession;
/**
* @param string $formattedName The name of the VOD session to be retrieved, in the form of
* `projects/{project_number}/locations/{location}/vodSessions/{id}`. Please see
* {@see VideoStitcherServiceClient::vodSessionName()} for help formatting this field.
*/
function get_vod_session_sample(string $formattedName): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var VodSession $response */
$response = $videoStitcherServiceClient->getVodSession($formattedName);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedName = VideoStitcherServiceClient::vodSessionName(
'[PROJECT]',
'[LOCATION]',
'[VOD_SESSION]'
);
get_vod_session_sample($formattedName);
}
getVodStitchDetail
Returns the specified stitching information for the specified VOD session.
name
string
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}
.
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Cloud\Video\Stitcher\V1\VodStitchDetail;
/**
* @param string $formattedName 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}`. Please see
* {@see VideoStitcherServiceClient::vodStitchDetailName()} for help formatting this field.
*/
function get_vod_stitch_detail_sample(string $formattedName): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var VodStitchDetail $response */
$response = $videoStitcherServiceClient->getVodStitchDetail($formattedName);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedName = VideoStitcherServiceClient::vodStitchDetailName(
'[PROJECT]',
'[LOCATION]',
'[VOD_SESSION]',
'[VOD_STITCH_DETAIL]'
);
get_vod_stitch_detail_sample($formattedName);
}
listCdnKeys
Lists all CDN keys in the specified project and location.
parent
string
Required. The project that contains the list of CDN keys, in the form of projects/{project_number}/locations/{location}
.
optionalArgs
array
Optional.
↳ pageSize
int
The maximum number of resources contained in the underlying API response. The API may return fewer values in a page, even if there are additional values to be retrieved.
↳ pageToken
string
A page token is used to specify a page of values to be returned. If no page token is specified (the default), the first page of values will be returned. Any page token used here must have been generated by a previous call to the API.
↳ filter
string
Filtering results
↳ orderBy
string
Hint for how to order the results
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\Video\Stitcher\V1\CdnKey;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
/**
* @param string $formattedParent The project that contains the list of CDN keys, in the form of
* `projects/{project_number}/locations/{location}`. Please see
* {@see VideoStitcherServiceClient::locationName()} for help formatting this field.
*/
function list_cdn_keys_sample(string $formattedParent): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $videoStitcherServiceClient->listCdnKeys($formattedParent);
/** @var CdnKey $element */
foreach ($response as $element) {
printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = VideoStitcherServiceClient::locationName('[PROJECT]', '[LOCATION]');
list_cdn_keys_sample($formattedParent);
}
listLiveAdTagDetails
Return the list of ad tag details for the specified live session.
parent
string
Required. The resource parent in the form of projects/{project}/locations/{location}/liveSessions/{live_session}
.
optionalArgs
array
Optional.
↳ pageSize
int
The maximum number of resources contained in the underlying API response. The API may return fewer values in a page, even if there are additional values to be retrieved.
↳ pageToken
string
A page token is used to specify a page of values to be returned. If no page token is specified (the default), the first page of values will be returned. Any page token used here must have been generated by a previous call to the API.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\Video\Stitcher\V1\LiveAdTagDetail;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
/**
* @param string $formattedParent The resource parent in the form of
* `projects/{project}/locations/{location}/liveSessions/{live_session}`. Please see
* {@see VideoStitcherServiceClient::liveSessionName()} for help formatting this field.
*/
function list_live_ad_tag_details_sample(string $formattedParent): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $videoStitcherServiceClient->listLiveAdTagDetails($formattedParent);
/** @var LiveAdTagDetail $element */
foreach ($response as $element) {
printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = VideoStitcherServiceClient::liveSessionName(
'[PROJECT]',
'[LOCATION]',
'[LIVE_SESSION]'
);
list_live_ad_tag_details_sample($formattedParent);
}
listLiveConfigs
Lists all live configs managed by the Video Stitcher that belong to the specified project and region.
parent
string
Required. The project that contains the list of live configs, in the
form of projects/{project_number}/locations/{location}
.
optionalArgs
array
Optional.
↳ pageSize
int
The maximum number of resources contained in the underlying API response. The API may return fewer values in a page, even if there are additional values to be retrieved.
↳ pageToken
string
A page token is used to specify a page of values to be returned. If no page token is specified (the default), the first page of values will be returned. Any page token used here must have been generated by a previous call to the API.
↳ filter
↳ orderBy
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\Video\Stitcher\V1\LiveConfig;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
/**
* @param string $formattedParent The project that contains the list of live configs, in the
* form of `projects/{project_number}/locations/{location}`. Please see
* {@see VideoStitcherServiceClient::locationName()} for help formatting this field.
*/
function list_live_configs_sample(string $formattedParent): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $videoStitcherServiceClient->listLiveConfigs($formattedParent);
/** @var LiveConfig $element */
foreach ($response as $element) {
printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = VideoStitcherServiceClient::locationName('[PROJECT]', '[LOCATION]');
list_live_configs_sample($formattedParent);
}
listSlates
Lists all slates in the specified project and location.
parent
string
Required. The project to list slates, in the form of projects/{project_number}/locations/{location}
.
optionalArgs
array
Optional.
↳ pageSize
int
The maximum number of resources contained in the underlying API response. The API may return fewer values in a page, even if there are additional values to be retrieved.
↳ pageToken
string
A page token is used to specify a page of values to be returned. If no page token is specified (the default), the first page of values will be returned. Any page token used here must have been generated by a previous call to the API.
↳ filter
string
Filtering results
↳ orderBy
string
Hint for how to order the results
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\Video\Stitcher\V1\Slate;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
/**
* @param string $formattedParent The project to list slates, in the form of
* `projects/{project_number}/locations/{location}`. Please see
* {@see VideoStitcherServiceClient::locationName()} for help formatting this field.
*/
function list_slates_sample(string $formattedParent): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $videoStitcherServiceClient->listSlates($formattedParent);
/** @var Slate $element */
foreach ($response as $element) {
printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = VideoStitcherServiceClient::locationName('[PROJECT]', '[LOCATION]');
list_slates_sample($formattedParent);
}
listVodAdTagDetails
Return the list of ad tag details for the specified VOD session.
parent
string
Required. The VOD session which the ad tag details belong to, in the form
of projects/{project}/locations/{location}/vodSessions/{vod_session_id}
.
optionalArgs
array
Optional.
↳ pageSize
int
The maximum number of resources contained in the underlying API response. The API may return fewer values in a page, even if there are additional values to be retrieved.
↳ pageToken
string
A page token is used to specify a page of values to be returned. If no page token is specified (the default), the first page of values will be returned. Any page token used here must have been generated by a previous call to the API.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Cloud\Video\Stitcher\V1\VodAdTagDetail;
/**
* @param string $formattedParent The VOD session which the ad tag details belong to, in the form
* of `projects/{project}/locations/{location}/vodSessions/{vod_session_id}`. Please see
* {@see VideoStitcherServiceClient::vodSessionName()} for help formatting this field.
*/
function list_vod_ad_tag_details_sample(string $formattedParent): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $videoStitcherServiceClient->listVodAdTagDetails($formattedParent);
/** @var VodAdTagDetail $element */
foreach ($response as $element) {
printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = VideoStitcherServiceClient::vodSessionName(
'[PROJECT]',
'[LOCATION]',
'[VOD_SESSION]'
);
list_vod_ad_tag_details_sample($formattedParent);
}
listVodStitchDetails
Returns a list of detailed stitching information of the specified VOD session.
parent
string
Required. The VOD session where the stitch details belong to, in the form
of projects/{project}/locations/{location}/vodSessions/{id}
.
optionalArgs
array
Optional.
↳ pageSize
int
The maximum number of resources contained in the underlying API response. The API may return fewer values in a page, even if there are additional values to be retrieved.
↳ pageToken
string
A page token is used to specify a page of values to be returned. If no page token is specified (the default), the first page of values will be returned. Any page token used here must have been generated by a previous call to the API.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Cloud\Video\Stitcher\V1\VodStitchDetail;
/**
* @param string $formattedParent The VOD session where the stitch details belong to, in the form
* of `projects/{project}/locations/{location}/vodSessions/{id}`. Please see
* {@see VideoStitcherServiceClient::vodSessionName()} for help formatting this field.
*/
function list_vod_stitch_details_sample(string $formattedParent): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $videoStitcherServiceClient->listVodStitchDetails($formattedParent);
/** @var VodStitchDetail $element */
foreach ($response as $element) {
printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function callSample(): void
{
$formattedParent = VideoStitcherServiceClient::vodSessionName(
'[PROJECT]',
'[LOCATION]',
'[VOD_SESSION]'
);
list_vod_stitch_details_sample($formattedParent);
}
updateCdnKey
Updates the specified CDN key. Only update fields specified in the call method body.
cdnKey
Google\Cloud\Video\Stitcher\V1\CdnKey
Required. The CDN key resource which replaces the resource on the server.
updateMask
Google\Protobuf\FieldMask
Required. The update mask applies to the resource.
For the FieldMask
definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Video\Stitcher\V1\CdnKey;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Protobuf\FieldMask;
use Google\Rpc\Status;
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function update_cdn_key_sample(): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Prepare any non-scalar elements to be passed along with the request.
$cdnKey = new CdnKey();
$updateMask = new FieldMask();
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $videoStitcherServiceClient->updateCdnKey($cdnKey, $updateMask);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var CdnKey $result */
$result = $response->getResult();
printf('Operation successful with response data: %s' . PHP_EOL, $result->serializeToJsonString());
} else {
/** @var Status $error */
$error = $response->getError();
printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
updateSlate
Updates the specified slate.
slate
updateMask
optionalArgs
array
Optional.
↳ retrySettings
RetrySettings|array
Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Video\Stitcher\V1\Slate;
use Google\Cloud\Video\Stitcher\V1\VideoStitcherServiceClient;
use Google\Protobuf\FieldMask;
use Google\Rpc\Status;
/**
* This sample 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.
* - It may require specifying regional endpoints when creating the service client,
* please see the apiEndpoint client configuration option for more details.
*/
function update_slate_sample(): void
{
// Create a client.
$videoStitcherServiceClient = new VideoStitcherServiceClient();
// Prepare any non-scalar elements to be passed along with the request.
$slate = new Slate();
$updateMask = new FieldMask();
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $videoStitcherServiceClient->updateSlate($slate, $updateMask);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var Slate $result */
$result = $response->getResult();
printf('Operation successful with response data: %s' . PHP_EOL, $result->serializeToJsonString());
} else {
/** @var Status $error */
$error = $response->getError();
printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString());
}
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
Constants
SERVICE_NAME
Value: 'google.cloud.video.stitcher.v1.VideoStitcherService'
The name of the service.
SERVICE_ADDRESS
Value: 'videostitcher.googleapis.com'
The default address of the service.
DEFAULT_SERVICE_PORT
Value: 443
The default port of the service.
CODEGEN_NAME
Value: 'gapic'
The name of the code generator, to be included in the agent header.