Reference documentation and code samples for the Google Cloud Security Compliance V1 Client class DeploymentClient.
Service Description: Deployment service allows users to manage deployments of Frameworks and Cloud Controls on a target resource.
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 \ CloudSecurityCompliance \ V1 \ ClientMethods
__construct
Constructor.
Parameters | |
---|---|
Name | Description |
options |
array|Google\ApiCore\Options\ClientOptions
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 |
FetchAuthTokenInterface|CredentialsWrapper
This option should only be used with a pre-constructed Google\Auth\FetchAuthTokenInterface or Google\ApiCore\CredentialsWrapper object. Note that when one of these objects are provided, any settings in $credentialsConfig will be ignored. Important: If you are providing a path to a credentials file, or a decoded credentials file as a PHP array, this usage is now DEPRECATED. Providing an unvalidated credential configuration to Google APIs can compromise the security of your systems and data. It is recommended to create the credentials explicitly |
↳ 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. |
↳ logger |
false|LoggerInterface
A PSR-3 compliant logger. If set to false, logging is disabled, ignoring the 'GOOGLE_SDK_PHP_LOGGING' environment flag |
↳ universeDomain |
string
The service domain for the client. Defaults to 'googleapis.com'. |
createFrameworkDeployment
Creates a new FrameworkDeployment in a given parent resource.
The async variant is DeploymentClient::createFrameworkDeploymentAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\CloudSecurityCompliance\V1\CreateFrameworkDeploymentRequest
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\OperationResponse<Google\Cloud\CloudSecurityCompliance\V1\FrameworkDeployment> |
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\CloudSecurityCompliance\V1\Client\DeploymentClient;
use Google\Cloud\CloudSecurityCompliance\V1\CloudControlDetails;
use Google\Cloud\CloudSecurityCompliance\V1\CloudControlMetadata;
use Google\Cloud\CloudSecurityCompliance\V1\CreateFrameworkDeploymentRequest;
use Google\Cloud\CloudSecurityCompliance\V1\EnforcementMode;
use Google\Cloud\CloudSecurityCompliance\V1\FrameworkDeployment;
use Google\Cloud\CloudSecurityCompliance\V1\FrameworkReference;
use Google\Cloud\CloudSecurityCompliance\V1\TargetResourceConfig;
use Google\Rpc\Status;
/**
* @param string $formattedParent The parent resource of the FrameworkDeployment in the format:
* organizations/{organization}/locations/{location}
* Only global location is supported. Please see
* {@see DeploymentClient::organizationLocationName()} for help formatting this field.
* @param string $frameworkDeploymentFrameworkFramework In the format:
* organizations/{org}/locations/{location}/frameworks/{framework}
* @param string $frameworkDeploymentCloudControlMetadataCloudControlDetailsName The name of the CloudControl in the format:
* “organizations/{organization}/locations/{location}/
* cloudControls/{cloud-control}”
* @param int $frameworkDeploymentCloudControlMetadataCloudControlDetailsMajorRevisionId Major revision of cloudcontrol
* @param int $frameworkDeploymentCloudControlMetadataEnforcementMode Enforcement mode of the cloud control
*/
function create_framework_deployment_sample(
string $formattedParent,
string $frameworkDeploymentFrameworkFramework,
string $frameworkDeploymentCloudControlMetadataCloudControlDetailsName,
int $frameworkDeploymentCloudControlMetadataCloudControlDetailsMajorRevisionId,
int $frameworkDeploymentCloudControlMetadataEnforcementMode
): void {
// Create a client.
$deploymentClient = new DeploymentClient();
// Prepare the request message.
$frameworkDeploymentTargetResourceConfig = new TargetResourceConfig();
$frameworkDeploymentFramework = (new FrameworkReference())
->setFramework($frameworkDeploymentFrameworkFramework);
$frameworkDeploymentCloudControlMetadataCloudControlDetails = (new CloudControlDetails())
->setName($frameworkDeploymentCloudControlMetadataCloudControlDetailsName)
->setMajorRevisionId($frameworkDeploymentCloudControlMetadataCloudControlDetailsMajorRevisionId);
$cloudControlMetadata = (new CloudControlMetadata())
->setCloudControlDetails($frameworkDeploymentCloudControlMetadataCloudControlDetails)
->setEnforcementMode($frameworkDeploymentCloudControlMetadataEnforcementMode);
$frameworkDeploymentCloudControlMetadata = [$cloudControlMetadata,];
$frameworkDeployment = (new FrameworkDeployment())
->setTargetResourceConfig($frameworkDeploymentTargetResourceConfig)
->setFramework($frameworkDeploymentFramework)
->setCloudControlMetadata($frameworkDeploymentCloudControlMetadata);
$request = (new CreateFrameworkDeploymentRequest())
->setParent($formattedParent)
->setFrameworkDeployment($frameworkDeployment);
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $deploymentClient->createFrameworkDeployment($request);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var FrameworkDeployment $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());
}
}
/**
* 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
{
$formattedParent = DeploymentClient::organizationLocationName('[ORGANIZATION]', '[LOCATION]');
$frameworkDeploymentFrameworkFramework = '[FRAMEWORK]';
$frameworkDeploymentCloudControlMetadataCloudControlDetailsName = '[NAME]';
$frameworkDeploymentCloudControlMetadataCloudControlDetailsMajorRevisionId = 0;
$frameworkDeploymentCloudControlMetadataEnforcementMode = EnforcementMode::ENFORCEMENT_MODE_UNSPECIFIED;
create_framework_deployment_sample(
$formattedParent,
$frameworkDeploymentFrameworkFramework,
$frameworkDeploymentCloudControlMetadataCloudControlDetailsName,
$frameworkDeploymentCloudControlMetadataCloudControlDetailsMajorRevisionId,
$frameworkDeploymentCloudControlMetadataEnforcementMode
);
}
deleteFrameworkDeployment
Deletes a single FrameworkDeployment.
The async variant is DeploymentClient::deleteFrameworkDeploymentAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\CloudSecurityCompliance\V1\DeleteFrameworkDeploymentRequest
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\OperationResponse<null> |
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\CloudSecurityCompliance\V1\Client\DeploymentClient;
use Google\Cloud\CloudSecurityCompliance\V1\DeleteFrameworkDeploymentRequest;
use Google\Rpc\Status;
/**
* @param string $formattedName name of the FrameworkDeployment to be deleted in the following
* format:
* organizations/{organization}/locations/{location}/frameworkDeployments/{framework_deployment_id}
* Please see {@see DeploymentClient::frameworkDeploymentName()} for help formatting this field.
*/
function delete_framework_deployment_sample(string $formattedName): void
{
// Create a client.
$deploymentClient = new DeploymentClient();
// Prepare the request message.
$request = (new DeleteFrameworkDeploymentRequest())
->setName($formattedName);
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $deploymentClient->deleteFrameworkDeployment($request);
$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());
}
}
/**
* 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
{
$formattedName = DeploymentClient::frameworkDeploymentName(
'[ORGANIZATION]',
'[LOCATION]',
'[FRAMEWORK_DEPLOYMENT]'
);
delete_framework_deployment_sample($formattedName);
}
getCloudControlDeployment
Gets details of a single CloudControlDeployment.
The async variant is DeploymentClient::getCloudControlDeploymentAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\CloudSecurityCompliance\V1\GetCloudControlDeploymentRequest
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\CloudSecurityCompliance\V1\CloudControlDeployment |
use Google\ApiCore\ApiException;
use Google\Cloud\CloudSecurityCompliance\V1\Client\DeploymentClient;
use Google\Cloud\CloudSecurityCompliance\V1\CloudControlDeployment;
use Google\Cloud\CloudSecurityCompliance\V1\GetCloudControlDeploymentRequest;
/**
* @param string $formattedName CloudControlDeployment name in the following format:
* organizations/{organization}/locations/{location}/cloudControlDeployments/{cloud_control_deployment_id}
* Please see {@see DeploymentClient::cloudControlDeploymentName()} for help formatting this field.
*/
function get_cloud_control_deployment_sample(string $formattedName): void
{
// Create a client.
$deploymentClient = new DeploymentClient();
// Prepare the request message.
$request = (new GetCloudControlDeploymentRequest())
->setName($formattedName);
// Call the API and handle any network failures.
try {
/** @var CloudControlDeployment $response */
$response = $deploymentClient->getCloudControlDeployment($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
{
$formattedName = DeploymentClient::cloudControlDeploymentName(
'[ORGANIZATION]',
'[LOCATION]',
'[CLOUD_CONTROL_DEPLOYMENT]'
);
get_cloud_control_deployment_sample($formattedName);
}
getFrameworkDeployment
Gets details of a single FrameworkDeployment.
The async variant is DeploymentClient::getFrameworkDeploymentAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\CloudSecurityCompliance\V1\GetFrameworkDeploymentRequest
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\CloudSecurityCompliance\V1\FrameworkDeployment |
use Google\ApiCore\ApiException;
use Google\Cloud\CloudSecurityCompliance\V1\Client\DeploymentClient;
use Google\Cloud\CloudSecurityCompliance\V1\FrameworkDeployment;
use Google\Cloud\CloudSecurityCompliance\V1\GetFrameworkDeploymentRequest;
/**
* @param string $formattedName FrameworkDeployment name in the following format:
* organizations/{organization}/locations/{location}/frameworkDeployments/{framework_deployment_id}
* Please see {@see DeploymentClient::frameworkDeploymentName()} for help formatting this field.
*/
function get_framework_deployment_sample(string $formattedName): void
{
// Create a client.
$deploymentClient = new DeploymentClient();
// Prepare the request message.
$request = (new GetFrameworkDeploymentRequest())
->setName($formattedName);
// Call the API and handle any network failures.
try {
/** @var FrameworkDeployment $response */
$response = $deploymentClient->getFrameworkDeployment($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
{
$formattedName = DeploymentClient::frameworkDeploymentName(
'[ORGANIZATION]',
'[LOCATION]',
'[FRAMEWORK_DEPLOYMENT]'
);
get_framework_deployment_sample($formattedName);
}
listCloudControlDeployments
Lists CloudControlDeployments in a given parent resource.
The async variant is DeploymentClient::listCloudControlDeploymentsAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\CloudSecurityCompliance\V1\ListCloudControlDeploymentsRequest
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\CloudSecurityCompliance\V1\Client\DeploymentClient;
use Google\Cloud\CloudSecurityCompliance\V1\CloudControlDeployment;
use Google\Cloud\CloudSecurityCompliance\V1\ListCloudControlDeploymentsRequest;
/**
* @param string $formattedParent parent resource of the CloudControlDeployment in the format:
* organizations/{organization}/locations/{location}
* Only global location is supported. Please see
* {@see DeploymentClient::organizationLocationName()} for help formatting this field.
*/
function list_cloud_control_deployments_sample(string $formattedParent): void
{
// Create a client.
$deploymentClient = new DeploymentClient();
// Prepare the request message.
$request = (new ListCloudControlDeploymentsRequest())
->setParent($formattedParent);
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $deploymentClient->listCloudControlDeployments($request);
/** @var CloudControlDeployment $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
{
$formattedParent = DeploymentClient::organizationLocationName('[ORGANIZATION]', '[LOCATION]');
list_cloud_control_deployments_sample($formattedParent);
}
listFrameworkDeployments
Lists FrameworkDeployments in a given parent resource.
The async variant is DeploymentClient::listFrameworkDeploymentsAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\CloudSecurityCompliance\V1\ListFrameworkDeploymentsRequest
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\CloudSecurityCompliance\V1\Client\DeploymentClient;
use Google\Cloud\CloudSecurityCompliance\V1\FrameworkDeployment;
use Google\Cloud\CloudSecurityCompliance\V1\ListFrameworkDeploymentsRequest;
/**
* @param string $formattedParent parent resource of the FrameworkDeployment in the format:
* organizations/{organization}/locations/{location}
* Only global location is supported. Please see
* {@see DeploymentClient::organizationLocationName()} for help formatting this field.
*/
function list_framework_deployments_sample(string $formattedParent): void
{
// Create a client.
$deploymentClient = new DeploymentClient();
// Prepare the request message.
$request = (new ListFrameworkDeploymentsRequest())
->setParent($formattedParent);
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $deploymentClient->listFrameworkDeployments($request);
/** @var FrameworkDeployment $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
{
$formattedParent = DeploymentClient::organizationLocationName('[ORGANIZATION]', '[LOCATION]');
list_framework_deployments_sample($formattedParent);
}
getLocation
Gets information about a location.
The async variant is DeploymentClient::getLocationAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Location\GetLocationRequest
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\Location\Location |
use Google\ApiCore\ApiException;
use Google\Cloud\CloudSecurityCompliance\V1\Client\DeploymentClient;
use Google\Cloud\Location\GetLocationRequest;
use Google\Cloud\Location\Location;
/**
* 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 get_location_sample(): void
{
// Create a client.
$deploymentClient = new DeploymentClient();
// Prepare the request message.
$request = new GetLocationRequest();
// Call the API and handle any network failures.
try {
/** @var Location $response */
$response = $deploymentClient->getLocation($request);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}
}
listLocations
Lists information about the supported locations for this service.
The async variant is DeploymentClient::listLocationsAsync() .
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Location\ListLocationsRequest
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\CloudSecurityCompliance\V1\Client\DeploymentClient;
use Google\Cloud\Location\ListLocationsRequest;
use Google\Cloud\Location\Location;
/**
* 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 list_locations_sample(): void
{
// Create a client.
$deploymentClient = new DeploymentClient();
// Prepare the request message.
$request = new ListLocationsRequest();
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $deploymentClient->listLocations($request);
/** @var Location $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());
}
}
createFrameworkDeploymentAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\CloudSecurityCompliance\V1\CreateFrameworkDeploymentRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\OperationResponse> |
deleteFrameworkDeploymentAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\CloudSecurityCompliance\V1\DeleteFrameworkDeploymentRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\OperationResponse> |
getCloudControlDeploymentAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\CloudSecurityCompliance\V1\GetCloudControlDeploymentRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\CloudSecurityCompliance\V1\CloudControlDeployment> |
getFrameworkDeploymentAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\CloudSecurityCompliance\V1\GetFrameworkDeploymentRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\CloudSecurityCompliance\V1\FrameworkDeployment> |
listCloudControlDeploymentsAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\CloudSecurityCompliance\V1\ListCloudControlDeploymentsRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\PagedListResponse> |
listFrameworkDeploymentsAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\CloudSecurityCompliance\V1\ListFrameworkDeploymentsRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\PagedListResponse> |
getLocationAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Location\GetLocationRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\Cloud\Location\Location> |
listLocationsAsync
Parameters | |
---|---|
Name | Description |
request |
Google\Cloud\Location\ListLocationsRequest
|
optionalArgs |
array
|
Returns | |
---|---|
Type | Description |
GuzzleHttp\Promise\PromiseInterface<Google\ApiCore\PagedListResponse> |
getOperationsClient
Return an OperationsClient object with the same endpoint as $this.
Returns | |
---|---|
Type | Description |
Google\LongRunning\Client\OperationsClient |
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.
Parameters | |
---|---|
Name | Description |
operationName |
string
The name of the long running operation |
methodName |
string
The name of the method used to start the operation |
Returns | |
---|---|
Type | Description |
Google\ApiCore\OperationResponse |
static::cloudControlDeploymentName
Formats a string containing the fully-qualified path to represent a cloud_control_deployment resource.
Parameters | |
---|---|
Name | Description |
organization |
string
|
location |
string
|
cloudControlDeployment |
string
|
Returns | |
---|---|
Type | Description |
string |
The formatted cloud_control_deployment resource. |
static::frameworkDeploymentName
Formats a string containing the fully-qualified path to represent a framework_deployment resource.
Parameters | |
---|---|
Name | Description |
organization |
string
|
location |
string
|
frameworkDeployment |
string
|
Returns | |
---|---|
Type | Description |
string |
The formatted framework_deployment resource. |
static::organizationLocationName
Formats a string containing the fully-qualified path to represent a organization_location resource.
Parameters | |
---|---|
Name | Description |
organization |
string
|
location |
string
|
Returns | |
---|---|
Type | Description |
string |
The formatted organization_location 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
- cloudControlDeployment: organizations/{organization}/locations/{location}/cloudControlDeployments/{cloud_control_deployment}
- frameworkDeployment: organizations/{organization}/locations/{location}/frameworkDeployments/{framework_deployment}
- organizationLocation: organizations/{organization}/locations/{location}
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. |