Reference documentation and code samples for the Google Cloud Commerce Consumer Procurement V1 Client class LicenseManagementServiceClient.
Service Description: Service for managing licenses.
This class provides the ability to make remote calls to the backing service through method calls that map to API methods.
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.
Namespace
Google \ Cloud \ Commerce \ Consumer \ Procurement \ V1 \ ClientMethods
__construct
Constructor.
Parameters | |
---|---|
Name | Description |
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 |
↳ 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 |
↳ 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. |
assign
Assigns a license to a user.
The async variant is LicenseManagementServiceClient::assignAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Commerce\Consumer\Procurement\V1\AssignRequest
A request to house fields associated with the call. |
callOptions |
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. |
Returns | |
---|---|
Type | Description |
Google\Cloud\Commerce\Consumer\Procurement\V1\AssignResponse |
use Google\ApiCore\ApiException;
use Google\Cloud\Commerce\Consumer\Procurement\V1\AssignRequest;
use Google\Cloud\Commerce\Consumer\Procurement\V1\AssignResponse;
use Google\Cloud\Commerce\Consumer\Procurement\V1\Client\LicenseManagementServiceClient;
/**
* @param string $parent License pool name.
* @param string $usernamesElement Username.
* Format: `name@domain.com`.
*/
function assign_sample(string $parent, string $usernamesElement): void
{
// Create a client.
$licenseManagementServiceClient = new LicenseManagementServiceClient();
// Prepare the request message.
$usernames = [$usernamesElement,];
$request = (new AssignRequest())
->setParent($parent)
->setUsernames($usernames);
// Call the API and handle any network failures.
try {
/** @var AssignResponse $response */
$response = $licenseManagementServiceClient->assign($request);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* Helper to execute the sample.
*
* 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
{
$parent = '[PARENT]';
$usernamesElement = '[USERNAMES]';
assign_sample($parent, $usernamesElement);
}
enumerateLicensedUsers
Enumerates all users assigned a license.
The async variant is LicenseManagementServiceClient::enumerateLicensedUsersAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Commerce\Consumer\Procurement\V1\EnumerateLicensedUsersRequest
A request to house fields associated with the call. |
callOptions |
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. |
Returns | |
---|---|
Type | Description |
Google\ApiCore\PagedListResponse |
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\Commerce\Consumer\Procurement\V1\Client\LicenseManagementServiceClient;
use Google\Cloud\Commerce\Consumer\Procurement\V1\EnumerateLicensedUsersRequest;
use Google\Cloud\Commerce\Consumer\Procurement\V1\LicensedUser;
/**
* @param string $parent License pool name.
*/
function enumerate_licensed_users_sample(string $parent): void
{
// Create a client.
$licenseManagementServiceClient = new LicenseManagementServiceClient();
// Prepare the request message.
$request = (new EnumerateLicensedUsersRequest())
->setParent($parent);
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $licenseManagementServiceClient->enumerateLicensedUsers($request);
/** @var LicensedUser $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());
}
}
/**
* Helper to execute the sample.
*
* 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
{
$parent = '[PARENT]';
enumerate_licensed_users_sample($parent);
}
getLicensePool
Gets the license pool.
The async variant is LicenseManagementServiceClient::getLicensePoolAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Commerce\Consumer\Procurement\V1\GetLicensePoolRequest
A request to house fields associated with the call. |
callOptions |
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. |
Returns | |
---|---|
Type | Description |
Google\Cloud\Commerce\Consumer\Procurement\V1\LicensePool |
use Google\ApiCore\ApiException;
use Google\Cloud\Commerce\Consumer\Procurement\V1\Client\LicenseManagementServiceClient;
use Google\Cloud\Commerce\Consumer\Procurement\V1\GetLicensePoolRequest;
use Google\Cloud\Commerce\Consumer\Procurement\V1\LicensePool;
/**
* @param string $name The name of the license pool to get.
* Format: `billingAccounts/{billing_account}/orders/{order}/licensePool`
*/
function get_license_pool_sample(string $name): void
{
// Create a client.
$licenseManagementServiceClient = new LicenseManagementServiceClient();
// Prepare the request message.
$request = (new GetLicensePoolRequest())
->setName($name);
// Call the API and handle any network failures.
try {
/** @var LicensePool $response */
$response = $licenseManagementServiceClient->getLicensePool($request);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* Helper to execute the sample.
*
* 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
{
$name = '[NAME]';
get_license_pool_sample($name);
}
unassign
Unassigns a license from a user.
The async variant is LicenseManagementServiceClient::unassignAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Commerce\Consumer\Procurement\V1\UnassignRequest
A request to house fields associated with the call. |
callOptions |
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. |
Returns | |
---|---|
Type | Description |
Google\Cloud\Commerce\Consumer\Procurement\V1\UnassignResponse |
use Google\ApiCore\ApiException;
use Google\Cloud\Commerce\Consumer\Procurement\V1\Client\LicenseManagementServiceClient;
use Google\Cloud\Commerce\Consumer\Procurement\V1\UnassignRequest;
use Google\Cloud\Commerce\Consumer\Procurement\V1\UnassignResponse;
/**
* @param string $parent License pool name.
* @param string $usernamesElement Username.
* Format: `name@domain.com`.
*/
function unassign_sample(string $parent, string $usernamesElement): void
{
// Create a client.
$licenseManagementServiceClient = new LicenseManagementServiceClient();
// Prepare the request message.
$usernames = [$usernamesElement,];
$request = (new UnassignRequest())
->setParent($parent)
->setUsernames($usernames);
// Call the API and handle any network failures.
try {
/** @var UnassignResponse $response */
$response = $licenseManagementServiceClient->unassign($request);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
/**
* Helper to execute the sample.
*
* 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
{
$parent = '[PARENT]';
$usernamesElement = '[USERNAMES]';
unassign_sample($parent, $usernamesElement);
}
updateLicensePool
Updates the license pool if one exists for this Order.
The async variant is LicenseManagementServiceClient::updateLicensePoolAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Commerce\Consumer\Procurement\V1\UpdateLicensePoolRequest
A request to house fields associated with the call. |
callOptions |
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. |
Returns | |
---|---|
Type | Description |
Google\Cloud\Commerce\Consumer\Procurement\V1\LicensePool |
use Google\ApiCore\ApiException;
use Google\Cloud\Commerce\Consumer\Procurement\V1\AssignmentProtocol;
use Google\Cloud\Commerce\Consumer\Procurement\V1\Client\LicenseManagementServiceClient;
use Google\Cloud\Commerce\Consumer\Procurement\V1\LicensePool;
use Google\Cloud\Commerce\Consumer\Procurement\V1\UpdateLicensePoolRequest;
use Google\Protobuf\FieldMask;
/**
* 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_license_pool_sample(): void
{
// Create a client.
$licenseManagementServiceClient = new LicenseManagementServiceClient();
// Prepare the request message.
$licensePoolLicenseAssignmentProtocol = new AssignmentProtocol();
$licensePool = (new LicensePool())
->setLicenseAssignmentProtocol($licensePoolLicenseAssignmentProtocol);
$updateMask = new FieldMask();
$request = (new UpdateLicensePoolRequest())
->setLicensePool($licensePool)
->setUpdateMask($updateMask);
// Call the API and handle any network failures.
try {
/** @var LicensePool $response */
$response = $licenseManagementServiceClient->updateLicensePool($request);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
assignAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Commerce\Consumer\Procurement\V1\AssignRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\Commerce\Consumer\Procurement\V1\AssignResponse> |
enumerateLicensedUsersAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Commerce\Consumer\Procurement\V1\EnumerateLicensedUsersRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\PagedListResponse> |
getLicensePoolAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Commerce\Consumer\Procurement\V1\GetLicensePoolRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\Commerce\Consumer\Procurement\V1\LicensePool> |
unassignAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Commerce\Consumer\Procurement\V1\UnassignRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\Commerce\Consumer\Procurement\V1\UnassignResponse> |
updateLicensePoolAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Commerce\Consumer\Procurement\V1\UpdateLicensePoolRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\Commerce\Consumer\Procurement\V1\LicensePool> |
static::licensePoolName
Formats a string containing the fully-qualified path to represent a license_pool resource.
Parameters | |
---|---|
Name | Description |
billingAccount |
string
|
order |
string
|
Returns | |
---|---|
Type | Description |
string |
The formatted license_pool resource. |
static::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
- licensePool: billingAccounts/{billing_account}/orders/{order}/licensePool
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.
Parameters | |
---|---|
Name | Description |
formattedName |
string
The formatted name string |
template |
string
Optional name of template to match |
Returns | |
---|---|
Type | Description |
array |
An associative array from name component IDs to component values. |