Google Cloud Dataproc V1 Client - Class AutoscalingPolicyServiceClient (3.13.2)

Reference documentation and code samples for the Google Cloud Dataproc V1 Client class AutoscalingPolicyServiceClient.

Service Description: The API interface for managing autoscaling policies in the Dataproc API.

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 \ Dataproc \ V1 \ Client

Methods

__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 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.

createAutoscalingPolicy

Parameters
Name Description
request Google\Cloud\Dataproc\V1\CreateAutoscalingPolicyRequest

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\Dataproc\V1\AutoscalingPolicy
Example
use Google\ApiCore\ApiException;
use Google\Cloud\Dataproc\V1\AutoscalingPolicy;
use Google\Cloud\Dataproc\V1\BasicAutoscalingAlgorithm;
use Google\Cloud\Dataproc\V1\BasicYarnAutoscalingConfig;
use Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient;
use Google\Cloud\Dataproc\V1\CreateAutoscalingPolicyRequest;
use Google\Cloud\Dataproc\V1\InstanceGroupAutoscalingPolicyConfig;
use Google\Protobuf\Duration;

/**
 * @param string $formattedParent                               The "resource name" of the region or location, as described
 *                                                              in https://cloud.google.com/apis/design/resource_names.
 *
 *                                                              * For `projects.regions.autoscalingPolicies.create`, the resource name
 *                                                              of the region has the following format:
 *                                                              `projects/{project_id}/regions/{region}`
 *
 *                                                              * For `projects.locations.autoscalingPolicies.create`, the resource name
 *                                                              of the location has the following format:
 *                                                              `projects/{project_id}/locations/{location}`
 *                                                              Please see {@see AutoscalingPolicyServiceClient::regionName()} for help formatting this field.
 * @param float  $policyBasicAlgorithmYarnConfigScaleUpFactor   Fraction of average YARN pending memory in the last cooldown
 *                                                              period for which to add workers. A scale-up factor of 1.0 will result in
 *                                                              scaling up so that there is no pending memory remaining after the update
 *                                                              (more aggressive scaling). A scale-up factor closer to 0 will result in a
 *                                                              smaller magnitude of scaling up (less aggressive scaling). See [How
 *                                                              autoscaling
 *                                                              works](https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/autoscaling#how_autoscaling_works)
 *                                                              for more information.
 *
 *                                                              Bounds: [0.0, 1.0].
 * @param float  $policyBasicAlgorithmYarnConfigScaleDownFactor Fraction of average YARN pending memory in the last cooldown
 *                                                              period for which to remove workers. A scale-down factor of 1 will result in
 *                                                              scaling down so that there is no available memory remaining after the
 *                                                              update (more aggressive scaling). A scale-down factor of 0 disables
 *                                                              removing workers, which can be beneficial for autoscaling a single job.
 *                                                              See [How autoscaling
 *                                                              works](https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/autoscaling#how_autoscaling_works)
 *                                                              for more information.
 *
 *                                                              Bounds: [0.0, 1.0].
 * @param int    $policyWorkerConfigMaxInstances                Maximum number of instances for this group. Required for primary
 *                                                              workers. Note that by default, clusters will not use secondary workers.
 *                                                              Required for secondary workers if the minimum secondary instances is set.
 *
 *                                                              Primary workers - Bounds: [min_instances, ).
 *                                                              Secondary workers - Bounds: [min_instances, ). Default: 0.
 */
function create_autoscaling_policy_sample(
    string $formattedParent,
    float $policyBasicAlgorithmYarnConfigScaleUpFactor,
    float $policyBasicAlgorithmYarnConfigScaleDownFactor,
    int $policyWorkerConfigMaxInstances
): void {
    // Create a client.
    $autoscalingPolicyServiceClient = new AutoscalingPolicyServiceClient();

    // Prepare the request message.
    $policyBasicAlgorithmYarnConfigGracefulDecommissionTimeout = new Duration();
    $policyBasicAlgorithmYarnConfig = (new BasicYarnAutoscalingConfig())
        ->setGracefulDecommissionTimeout($policyBasicAlgorithmYarnConfigGracefulDecommissionTimeout)
        ->setScaleUpFactor($policyBasicAlgorithmYarnConfigScaleUpFactor)
        ->setScaleDownFactor($policyBasicAlgorithmYarnConfigScaleDownFactor);
    $policyBasicAlgorithm = (new BasicAutoscalingAlgorithm())
        ->setYarnConfig($policyBasicAlgorithmYarnConfig);
    $policyWorkerConfig = (new InstanceGroupAutoscalingPolicyConfig())
        ->setMaxInstances($policyWorkerConfigMaxInstances);
    $policy = (new AutoscalingPolicy())
        ->setBasicAlgorithm($policyBasicAlgorithm)
        ->setWorkerConfig($policyWorkerConfig);
    $request = (new CreateAutoscalingPolicyRequest())
        ->setParent($formattedParent)
        ->setPolicy($policy);

    // Call the API and handle any network failures.
    try {
        /** @var AutoscalingPolicy $response */
        $response = $autoscalingPolicyServiceClient->createAutoscalingPolicy($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
{
    $formattedParent = AutoscalingPolicyServiceClient::regionName('[PROJECT]', '[REGION]');
    $policyBasicAlgorithmYarnConfigScaleUpFactor = 0.0;
    $policyBasicAlgorithmYarnConfigScaleDownFactor = 0.0;
    $policyWorkerConfigMaxInstances = 0;

    create_autoscaling_policy_sample(
        $formattedParent,
        $policyBasicAlgorithmYarnConfigScaleUpFactor,
        $policyBasicAlgorithmYarnConfigScaleDownFactor,
        $policyWorkerConfigMaxInstances
    );
}

deleteAutoscalingPolicy

Deletes an autoscaling policy. It is an error to delete an autoscaling policy that is in use by one or more clusters.

The async variant is Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient::deleteAutoscalingPolicyAsync() .

Parameters
Name Description
request Google\Cloud\Dataproc\V1\DeleteAutoscalingPolicyRequest

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.

Example
use Google\ApiCore\ApiException;
use Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient;
use Google\Cloud\Dataproc\V1\DeleteAutoscalingPolicyRequest;

/**
 * @param string $formattedName The "resource name" of the autoscaling policy, as described
 *                              in https://cloud.google.com/apis/design/resource_names.
 *
 *                              * For `projects.regions.autoscalingPolicies.delete`, the resource name
 *                              of the policy has the following format:
 *                              `projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id}`
 *
 *                              * For `projects.locations.autoscalingPolicies.delete`, the resource name
 *                              of the policy has the following format:
 *                              `projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id}`
 *                              Please see {@see AutoscalingPolicyServiceClient::autoscalingPolicyName()} for help formatting this field.
 */
function delete_autoscaling_policy_sample(string $formattedName): void
{
    // Create a client.
    $autoscalingPolicyServiceClient = new AutoscalingPolicyServiceClient();

    // Prepare the request message.
    $request = (new DeleteAutoscalingPolicyRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        $autoscalingPolicyServiceClient->deleteAutoscalingPolicy($request);
        printf('Call completed successfully.' . PHP_EOL);
    } 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 = AutoscalingPolicyServiceClient::autoscalingPolicyName(
        '[PROJECT]',
        '[LOCATION]',
        '[AUTOSCALING_POLICY]'
    );

    delete_autoscaling_policy_sample($formattedName);
}

getAutoscalingPolicy

Parameters
Name Description
request Google\Cloud\Dataproc\V1\GetAutoscalingPolicyRequest

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\Dataproc\V1\AutoscalingPolicy
Example
use Google\ApiCore\ApiException;
use Google\Cloud\Dataproc\V1\AutoscalingPolicy;
use Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient;
use Google\Cloud\Dataproc\V1\GetAutoscalingPolicyRequest;

/**
 * @param string $formattedName The "resource name" of the autoscaling policy, as described
 *                              in https://cloud.google.com/apis/design/resource_names.
 *
 *                              * For `projects.regions.autoscalingPolicies.get`, the resource name
 *                              of the policy has the following format:
 *                              `projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id}`
 *
 *                              * For `projects.locations.autoscalingPolicies.get`, the resource name
 *                              of the policy has the following format:
 *                              `projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id}`
 *                              Please see {@see AutoscalingPolicyServiceClient::autoscalingPolicyName()} for help formatting this field.
 */
function get_autoscaling_policy_sample(string $formattedName): void
{
    // Create a client.
    $autoscalingPolicyServiceClient = new AutoscalingPolicyServiceClient();

    // Prepare the request message.
    $request = (new GetAutoscalingPolicyRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var AutoscalingPolicy $response */
        $response = $autoscalingPolicyServiceClient->getAutoscalingPolicy($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 = AutoscalingPolicyServiceClient::autoscalingPolicyName(
        '[PROJECT]',
        '[LOCATION]',
        '[AUTOSCALING_POLICY]'
    );

    get_autoscaling_policy_sample($formattedName);
}

listAutoscalingPolicies

Lists autoscaling policies in the project.

The async variant is Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient::listAutoscalingPoliciesAsync() .

Parameters
Name Description
request Google\Cloud\Dataproc\V1\ListAutoscalingPoliciesRequest

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
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\Dataproc\V1\AutoscalingPolicy;
use Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient;
use Google\Cloud\Dataproc\V1\ListAutoscalingPoliciesRequest;

/**
 * @param string $formattedParent The "resource name" of the region or location, as described
 *                                in https://cloud.google.com/apis/design/resource_names.
 *
 *                                * For `projects.regions.autoscalingPolicies.list`, the resource name
 *                                of the region has the following format:
 *                                `projects/{project_id}/regions/{region}`
 *
 *                                * For `projects.locations.autoscalingPolicies.list`, the resource name
 *                                of the location has the following format:
 *                                `projects/{project_id}/locations/{location}`
 *                                Please see {@see AutoscalingPolicyServiceClient::regionName()} for help formatting this field.
 */
function list_autoscaling_policies_sample(string $formattedParent): void
{
    // Create a client.
    $autoscalingPolicyServiceClient = new AutoscalingPolicyServiceClient();

    // Prepare the request message.
    $request = (new ListAutoscalingPoliciesRequest())
        ->setParent($formattedParent);

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $autoscalingPolicyServiceClient->listAutoscalingPolicies($request);

        /** @var AutoscalingPolicy $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 = AutoscalingPolicyServiceClient::regionName('[PROJECT]', '[REGION]');

    list_autoscaling_policies_sample($formattedParent);
}

updateAutoscalingPolicy

Updates (replaces) autoscaling policy.

Disabled check for update_mask, because all updates will be full replacements.

The async variant is Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient::updateAutoscalingPolicyAsync() .

Parameters
Name Description
request Google\Cloud\Dataproc\V1\UpdateAutoscalingPolicyRequest

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\Dataproc\V1\AutoscalingPolicy
Example
use Google\ApiCore\ApiException;
use Google\Cloud\Dataproc\V1\AutoscalingPolicy;
use Google\Cloud\Dataproc\V1\BasicAutoscalingAlgorithm;
use Google\Cloud\Dataproc\V1\BasicYarnAutoscalingConfig;
use Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient;
use Google\Cloud\Dataproc\V1\InstanceGroupAutoscalingPolicyConfig;
use Google\Cloud\Dataproc\V1\UpdateAutoscalingPolicyRequest;
use Google\Protobuf\Duration;

/**
 * @param float $policyBasicAlgorithmYarnConfigScaleUpFactor   Fraction of average YARN pending memory in the last cooldown
 *                                                             period for which to add workers. A scale-up factor of 1.0 will result in
 *                                                             scaling up so that there is no pending memory remaining after the update
 *                                                             (more aggressive scaling). A scale-up factor closer to 0 will result in a
 *                                                             smaller magnitude of scaling up (less aggressive scaling). See [How
 *                                                             autoscaling
 *                                                             works](https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/autoscaling#how_autoscaling_works)
 *                                                             for more information.
 *
 *                                                             Bounds: [0.0, 1.0].
 * @param float $policyBasicAlgorithmYarnConfigScaleDownFactor Fraction of average YARN pending memory in the last cooldown
 *                                                             period for which to remove workers. A scale-down factor of 1 will result in
 *                                                             scaling down so that there is no available memory remaining after the
 *                                                             update (more aggressive scaling). A scale-down factor of 0 disables
 *                                                             removing workers, which can be beneficial for autoscaling a single job.
 *                                                             See [How autoscaling
 *                                                             works](https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/autoscaling#how_autoscaling_works)
 *                                                             for more information.
 *
 *                                                             Bounds: [0.0, 1.0].
 * @param int   $policyWorkerConfigMaxInstances                Maximum number of instances for this group. Required for primary
 *                                                             workers. Note that by default, clusters will not use secondary workers.
 *                                                             Required for secondary workers if the minimum secondary instances is set.
 *
 *                                                             Primary workers - Bounds: [min_instances, ).
 *                                                             Secondary workers - Bounds: [min_instances, ). Default: 0.
 */
function update_autoscaling_policy_sample(
    float $policyBasicAlgorithmYarnConfigScaleUpFactor,
    float $policyBasicAlgorithmYarnConfigScaleDownFactor,
    int $policyWorkerConfigMaxInstances
): void {
    // Create a client.
    $autoscalingPolicyServiceClient = new AutoscalingPolicyServiceClient();

    // Prepare the request message.
    $policyBasicAlgorithmYarnConfigGracefulDecommissionTimeout = new Duration();
    $policyBasicAlgorithmYarnConfig = (new BasicYarnAutoscalingConfig())
        ->setGracefulDecommissionTimeout($policyBasicAlgorithmYarnConfigGracefulDecommissionTimeout)
        ->setScaleUpFactor($policyBasicAlgorithmYarnConfigScaleUpFactor)
        ->setScaleDownFactor($policyBasicAlgorithmYarnConfigScaleDownFactor);
    $policyBasicAlgorithm = (new BasicAutoscalingAlgorithm())
        ->setYarnConfig($policyBasicAlgorithmYarnConfig);
    $policyWorkerConfig = (new InstanceGroupAutoscalingPolicyConfig())
        ->setMaxInstances($policyWorkerConfigMaxInstances);
    $policy = (new AutoscalingPolicy())
        ->setBasicAlgorithm($policyBasicAlgorithm)
        ->setWorkerConfig($policyWorkerConfig);
    $request = (new UpdateAutoscalingPolicyRequest())
        ->setPolicy($policy);

    // Call the API and handle any network failures.
    try {
        /** @var AutoscalingPolicy $response */
        $response = $autoscalingPolicyServiceClient->updateAutoscalingPolicy($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
{
    $policyBasicAlgorithmYarnConfigScaleUpFactor = 0.0;
    $policyBasicAlgorithmYarnConfigScaleDownFactor = 0.0;
    $policyWorkerConfigMaxInstances = 0;

    update_autoscaling_policy_sample(
        $policyBasicAlgorithmYarnConfigScaleUpFactor,
        $policyBasicAlgorithmYarnConfigScaleDownFactor,
        $policyWorkerConfigMaxInstances
    );
}

getIamPolicy

Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.

The async variant is Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient::getIamPolicyAsync() .

Parameters
Name Description
request Google\Cloud\Iam\V1\GetIamPolicyRequest

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\Iam\V1\Policy
Example
use Google\ApiCore\ApiException;
use Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient;
use Google\Cloud\Iam\V1\GetIamPolicyRequest;
use Google\Cloud\Iam\V1\Policy;

/**
 * @param string $resource REQUIRED: The resource for which the policy is being requested.
 *                         See the operation documentation for the appropriate value for this field.
 */
function get_iam_policy_sample(string $resource): void
{
    // Create a client.
    $autoscalingPolicyServiceClient = new AutoscalingPolicyServiceClient();

    // Prepare the request message.
    $request = (new GetIamPolicyRequest())
        ->setResource($resource);

    // Call the API and handle any network failures.
    try {
        /** @var Policy $response */
        $response = $autoscalingPolicyServiceClient->getIamPolicy($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
{
    $resource = '[RESOURCE]';

    get_iam_policy_sample($resource);
}

setIamPolicy

Sets the access control policy on the specified resource. Replaces any existing policy.

Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors.

The async variant is Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient::setIamPolicyAsync() .

Parameters
Name Description
request Google\Cloud\Iam\V1\SetIamPolicyRequest

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\Iam\V1\Policy
Example
use Google\ApiCore\ApiException;
use Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient;
use Google\Cloud\Iam\V1\Policy;
use Google\Cloud\Iam\V1\SetIamPolicyRequest;

/**
 * @param string $resource REQUIRED: The resource for which the policy is being specified.
 *                         See the operation documentation for the appropriate value for this field.
 */
function set_iam_policy_sample(string $resource): void
{
    // Create a client.
    $autoscalingPolicyServiceClient = new AutoscalingPolicyServiceClient();

    // Prepare the request message.
    $policy = new Policy();
    $request = (new SetIamPolicyRequest())
        ->setResource($resource)
        ->setPolicy($policy);

    // Call the API and handle any network failures.
    try {
        /** @var Policy $response */
        $response = $autoscalingPolicyServiceClient->setIamPolicy($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
{
    $resource = '[RESOURCE]';

    set_iam_policy_sample($resource);
}

testIamPermissions

Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.

Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.

The async variant is Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient::testIamPermissionsAsync() .

Parameters
Name Description
request Google\Cloud\Iam\V1\TestIamPermissionsRequest

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\Iam\V1\TestIamPermissionsResponse
Example
use Google\ApiCore\ApiException;
use Google\Cloud\Dataproc\V1\Client\AutoscalingPolicyServiceClient;
use Google\Cloud\Iam\V1\TestIamPermissionsRequest;
use Google\Cloud\Iam\V1\TestIamPermissionsResponse;

/**
 * @param string $resource           REQUIRED: The resource for which the policy detail is being requested.
 *                                   See the operation documentation for the appropriate value for this field.
 * @param string $permissionsElement The set of permissions to check for the `resource`. Permissions with
 *                                   wildcards (such as '*' or 'storage.*') are not allowed. For more
 *                                   information see
 *                                   [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).
 */
function test_iam_permissions_sample(string $resource, string $permissionsElement): void
{
    // Create a client.
    $autoscalingPolicyServiceClient = new AutoscalingPolicyServiceClient();

    // Prepare the request message.
    $permissions = [$permissionsElement,];
    $request = (new TestIamPermissionsRequest())
        ->setResource($resource)
        ->setPermissions($permissions);

    // Call the API and handle any network failures.
    try {
        /** @var TestIamPermissionsResponse $response */
        $response = $autoscalingPolicyServiceClient->testIamPermissions($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
{
    $resource = '[RESOURCE]';
    $permissionsElement = '[PERMISSIONS]';

    test_iam_permissions_sample($resource, $permissionsElement);
}

createAutoscalingPolicyAsync

Parameters
Name Description
request Google\Cloud\Dataproc\V1\CreateAutoscalingPolicyRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

deleteAutoscalingPolicyAsync

Parameters
Name Description
request Google\Cloud\Dataproc\V1\DeleteAutoscalingPolicyRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

getAutoscalingPolicyAsync

Parameters
Name Description
request Google\Cloud\Dataproc\V1\GetAutoscalingPolicyRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

listAutoscalingPoliciesAsync

Parameters
Name Description
request Google\Cloud\Dataproc\V1\ListAutoscalingPoliciesRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

updateAutoscalingPolicyAsync

Parameters
Name Description
request Google\Cloud\Dataproc\V1\UpdateAutoscalingPolicyRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

getIamPolicyAsync

Parameters
Name Description
request Google\Cloud\Iam\V1\GetIamPolicyRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

setIamPolicyAsync

Parameters
Name Description
request Google\Cloud\Iam\V1\SetIamPolicyRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

testIamPermissionsAsync

Parameters
Name Description
request Google\Cloud\Iam\V1\TestIamPermissionsRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

static::autoscalingPolicyName

Formats a string containing the fully-qualified path to represent a autoscaling_policy resource.

Parameters
Name Description
project string
location string
autoscalingPolicy string
Returns
Type Description
string The formatted autoscaling_policy resource.

static::locationName

Formats a string containing the fully-qualified path to represent a location resource.

Parameters
Name Description
project string
location string
Returns
Type Description
string The formatted location resource.

static::projectLocationAutoscalingPolicyName

Formats a string containing the fully-qualified path to represent a project_location_autoscaling_policy resource.

Parameters
Name Description
project string
location string
autoscalingPolicy string
Returns
Type Description
string The formatted project_location_autoscaling_policy resource.

static::projectRegionAutoscalingPolicyName

Formats a string containing the fully-qualified path to represent a project_region_autoscaling_policy resource.

Parameters
Name Description
project string
region string
autoscalingPolicy string
Returns
Type Description
string The formatted project_region_autoscaling_policy resource.

static::regionName

Formats a string containing the fully-qualified path to represent a region resource.

Parameters
Name Description
project string
region string
Returns
Type Description
string The formatted region 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

  • autoscalingPolicy: projects/{project}/locations/{location}/autoscalingPolicies/{autoscaling_policy}
  • location: projects/{project}/locations/{location}
  • projectLocationAutoscalingPolicy: projects/{project}/locations/{location}/autoscalingPolicies/{autoscaling_policy}
  • projectRegionAutoscalingPolicy: projects/{project}/regions/{region}/autoscalingPolicies/{autoscaling_policy}
  • region: projects/{project}/regions/{region}

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.