Reference documentation and code samples for the Google Cloud Dataproc V1 Client class ClusterControllerClient.
Service Description: The ClusterControllerService provides methods to manage clusters of Compute Engine instances.
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:
$clusterControllerClient = new ClusterControllerClient();
try {
$projectId = 'project_id';
$region = 'region';
$cluster = new Cluster();
$operationResponse = $clusterControllerClient->createCluster($projectId, $region, $cluster);
$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 = $clusterControllerClient->createCluster($projectId, $region, $cluster);
$operationName = $operationResponse->getName();
// ... do other work
$newOperationResponse = $clusterControllerClient->resumeOperation($operationName, 'createCluster');
while (!$newOperationResponse->isDone()) {
// ... do other work
$newOperationResponse->reload();
}
if ($newOperationResponse->operationSucceeded()) {
$result = $newOperationResponse->getResult();
// doSomethingWith($result)
} else {
$error = $newOperationResponse->getError();
// handleError($error)
}
} finally {
$clusterControllerClient->close();
}
Methods
getOperationsClient
Return an OperationsClient object with the same endpoint as $this.
Returns | |
---|---|
Type | Description |
Google\ApiCore\LongRunning\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 |
__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 {@see} object or {@see} 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 {@see} . |
↳ 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 {@see} and {@see} 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. |
createCluster
Creates a cluster in a project. The returned Operation.metadata will be ClusterOperationMetadata.
Parameters | |
---|---|
Name | Description |
projectId |
string
Required. The ID of the Google Cloud Platform project that the cluster belongs to. |
region |
string
Required. The Dataproc region in which to handle the request. |
cluster |
Google\Cloud\Dataproc\V1\Cluster
Required. The cluster to create. |
optionalArgs |
array
Optional. |
↳ requestId |
string
Optional. A unique ID used to identify the request. If the server receives two CreateClusterRequests with the same id, then the second request will be ignored and the first google.longrunning.Operation created and stored in the backend is returned. It is recommended to always set this value to a UUID. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters. |
↳ actionOnFailedPrimaryWorkers |
int
Optional. Failure action when primary worker creation fails. For allowed values, use constants defined on {@see} |
↳ retrySettings |
RetrySettings|array
Retry settings to use for this call. Can be a {@see} object, or an associative array of retry settings parameters. See the documentation on {@see} for example usage. |
Returns | |
---|---|
Type | Description |
Google\ApiCore\OperationResponse |
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Dataproc\V1\Cluster;
use Google\Cloud\Dataproc\V1\ClusterControllerClient;
use Google\Rpc\Status;
/**
* @param string $projectId The ID of the Google Cloud Platform project that the cluster
* belongs to.
* @param string $region The Dataproc region in which to handle the request.
* @param string $clusterProjectId The Google Cloud Platform project ID that the cluster belongs to.
* @param string $clusterClusterName The cluster name. Cluster names within a project must be
* unique. Names of deleted clusters can be reused.
*/
function create_cluster_sample(
string $projectId,
string $region,
string $clusterProjectId,
string $clusterClusterName
): void {
// Create a client.
$clusterControllerClient = new ClusterControllerClient();
// Prepare any non-scalar elements to be passed along with the request.
$cluster = (new Cluster())
->setProjectId($clusterProjectId)
->setClusterName($clusterClusterName);
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $clusterControllerClient->createCluster($projectId, $region, $cluster);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var Cluster $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
{
$projectId = '[PROJECT_ID]';
$region = '[REGION]';
$clusterProjectId = '[PROJECT_ID]';
$clusterClusterName = '[CLUSTER_NAME]';
create_cluster_sample($projectId, $region, $clusterProjectId, $clusterClusterName);
}
deleteCluster
Deletes a cluster in a project. The returned Operation.metadata will be ClusterOperationMetadata.
Parameters | |
---|---|
Name | Description |
projectId |
string
Required. The ID of the Google Cloud Platform project that the cluster belongs to. |
region |
string
Required. The Dataproc region in which to handle the request. |
clusterName |
string
Required. The cluster name. |
optionalArgs |
array
Optional. |
↳ clusterUuid |
string
Optional. Specifying the |
↳ requestId |
string
Optional. A unique ID used to identify the request. If the server receives two DeleteClusterRequests with the same id, then the second request will be ignored and the first google.longrunning.Operation created and stored in the backend is returned. It is recommended to always set this value to a UUID. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters. |
↳ retrySettings |
RetrySettings|array
Retry settings to use for this call. Can be a {@see} object, or an associative array of retry settings parameters. See the documentation on {@see} for example usage. |
Returns | |
---|---|
Type | Description |
Google\ApiCore\OperationResponse |
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Dataproc\V1\ClusterControllerClient;
use Google\Rpc\Status;
/**
* @param string $projectId The ID of the Google Cloud Platform project that the cluster
* belongs to.
* @param string $region The Dataproc region in which to handle the request.
* @param string $clusterName The cluster name.
*/
function delete_cluster_sample(string $projectId, string $region, string $clusterName): void
{
// Create a client.
$clusterControllerClient = new ClusterControllerClient();
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $clusterControllerClient->deleteCluster($projectId, $region, $clusterName);
$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
{
$projectId = '[PROJECT_ID]';
$region = '[REGION]';
$clusterName = '[CLUSTER_NAME]';
delete_cluster_sample($projectId, $region, $clusterName);
}
diagnoseCluster
Gets cluster diagnostic information. The returned Operation.metadata will be ClusterOperationMetadata.
After the operation completes, Operation.response contains DiagnoseClusterResults.
Parameters | |
---|---|
Name | Description |
projectId |
string
Required. The ID of the Google Cloud Platform project that the cluster belongs to. |
region |
string
Required. The Dataproc region in which to handle the request. |
clusterName |
string
Required. The cluster name. |
optionalArgs |
array
Optional. |
↳ retrySettings |
RetrySettings|array
Retry settings to use for this call. Can be a {@see} object, or an associative array of retry settings parameters. See the documentation on {@see} for example usage. |
Returns | |
---|---|
Type | Description |
Google\ApiCore\OperationResponse |
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Dataproc\V1\ClusterControllerClient;
use Google\Cloud\Dataproc\V1\DiagnoseClusterResults;
use Google\Rpc\Status;
/**
* @param string $projectId The ID of the Google Cloud Platform project that the cluster
* belongs to.
* @param string $region The Dataproc region in which to handle the request.
* @param string $clusterName The cluster name.
*/
function diagnose_cluster_sample(string $projectId, string $region, string $clusterName): void
{
// Create a client.
$clusterControllerClient = new ClusterControllerClient();
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $clusterControllerClient->diagnoseCluster($projectId, $region, $clusterName);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var DiagnoseClusterResults $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
{
$projectId = '[PROJECT_ID]';
$region = '[REGION]';
$clusterName = '[CLUSTER_NAME]';
diagnose_cluster_sample($projectId, $region, $clusterName);
}
getCluster
Gets the resource representation for a cluster in a project.
Parameters | |
---|---|
Name | Description |
projectId |
string
Required. The ID of the Google Cloud Platform project that the cluster belongs to. |
region |
string
Required. The Dataproc region in which to handle the request. |
clusterName |
string
Required. The cluster name. |
optionalArgs |
array
Optional. |
↳ retrySettings |
RetrySettings|array
Retry settings to use for this call. Can be a {@see} object, or an associative array of retry settings parameters. See the documentation on {@see} for example usage. |
Returns | |
---|---|
Type | Description |
Google\Cloud\Dataproc\V1\Cluster |
use Google\ApiCore\ApiException;
use Google\Cloud\Dataproc\V1\Cluster;
use Google\Cloud\Dataproc\V1\ClusterControllerClient;
/**
* @param string $projectId The ID of the Google Cloud Platform project that the cluster
* belongs to.
* @param string $region The Dataproc region in which to handle the request.
* @param string $clusterName The cluster name.
*/
function get_cluster_sample(string $projectId, string $region, string $clusterName): void
{
// Create a client.
$clusterControllerClient = new ClusterControllerClient();
// Call the API and handle any network failures.
try {
/** @var Cluster $response */
$response = $clusterControllerClient->getCluster($projectId, $region, $clusterName);
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
{
$projectId = '[PROJECT_ID]';
$region = '[REGION]';
$clusterName = '[CLUSTER_NAME]';
get_cluster_sample($projectId, $region, $clusterName);
}
listClusters
Lists all regions/{region}/clusters in a project alphabetically.
Parameters | |
---|---|
Name | Description |
projectId |
string
Required. The ID of the Google Cloud Platform project that the cluster belongs to. |
region |
string
Required. The Dataproc region in which to handle the request. |
optionalArgs |
array
Optional. |
↳ filter |
string
Optional. A filter constraining the clusters to list. Filters are case-sensitive and have the following syntax: field = value [AND [field = value]] ... where field is one of |
↳ 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 {@see} object, or an associative array of retry settings parameters. See the documentation on {@see} for example usage. |
Returns | |
---|---|
Type | Description |
Google\ApiCore\PagedListResponse |
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Cloud\Dataproc\V1\Cluster;
use Google\Cloud\Dataproc\V1\ClusterControllerClient;
/**
* @param string $projectId The ID of the Google Cloud Platform project that the cluster
* belongs to.
* @param string $region The Dataproc region in which to handle the request.
*/
function list_clusters_sample(string $projectId, string $region): void
{
// Create a client.
$clusterControllerClient = new ClusterControllerClient();
// Call the API and handle any network failures.
try {
/** @var PagedListResponse $response */
$response = $clusterControllerClient->listClusters($projectId, $region);
/** @var Cluster $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
{
$projectId = '[PROJECT_ID]';
$region = '[REGION]';
list_clusters_sample($projectId, $region);
}
startCluster
Starts a cluster in a project.
Parameters | |
---|---|
Name | Description |
projectId |
string
Required. The ID of the Google Cloud Platform project the cluster belongs to. |
region |
string
Required. The Dataproc region in which to handle the request. |
clusterName |
string
Required. The cluster name. |
optionalArgs |
array
Optional. |
↳ clusterUuid |
string
Optional. Specifying the |
↳ requestId |
string
Optional. A unique ID used to identify the request. If the server receives two StartClusterRequests with the same id, then the second request will be ignored and the first google.longrunning.Operation created and stored in the backend is returned. Recommendation: Set this value to a UUID. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters. |
↳ retrySettings |
RetrySettings|array
Retry settings to use for this call. Can be a {@see} object, or an associative array of retry settings parameters. See the documentation on {@see} for example usage. |
Returns | |
---|---|
Type | Description |
Google\ApiCore\OperationResponse |
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Dataproc\V1\Cluster;
use Google\Cloud\Dataproc\V1\ClusterControllerClient;
use Google\Rpc\Status;
/**
* @param string $projectId The ID of the Google Cloud Platform project the
* cluster belongs to.
* @param string $region The Dataproc region in which to handle the request.
* @param string $clusterName The cluster name.
*/
function start_cluster_sample(string $projectId, string $region, string $clusterName): void
{
// Create a client.
$clusterControllerClient = new ClusterControllerClient();
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $clusterControllerClient->startCluster($projectId, $region, $clusterName);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var Cluster $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
{
$projectId = '[PROJECT_ID]';
$region = '[REGION]';
$clusterName = '[CLUSTER_NAME]';
start_cluster_sample($projectId, $region, $clusterName);
}
stopCluster
Stops a cluster in a project.
Parameters | |
---|---|
Name | Description |
projectId |
string
Required. The ID of the Google Cloud Platform project the cluster belongs to. |
region |
string
Required. The Dataproc region in which to handle the request. |
clusterName |
string
Required. The cluster name. |
optionalArgs |
array
Optional. |
↳ clusterUuid |
string
Optional. Specifying the |
↳ requestId |
string
Optional. A unique ID used to identify the request. If the server receives two StopClusterRequests with the same id, then the second request will be ignored and the first google.longrunning.Operation created and stored in the backend is returned. Recommendation: Set this value to a UUID. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters. |
↳ retrySettings |
RetrySettings|array
Retry settings to use for this call. Can be a {@see} object, or an associative array of retry settings parameters. See the documentation on {@see} for example usage. |
Returns | |
---|---|
Type | Description |
Google\ApiCore\OperationResponse |
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Dataproc\V1\Cluster;
use Google\Cloud\Dataproc\V1\ClusterControllerClient;
use Google\Rpc\Status;
/**
* @param string $projectId The ID of the Google Cloud Platform project the
* cluster belongs to.
* @param string $region The Dataproc region in which to handle the request.
* @param string $clusterName The cluster name.
*/
function stop_cluster_sample(string $projectId, string $region, string $clusterName): void
{
// Create a client.
$clusterControllerClient = new ClusterControllerClient();
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $clusterControllerClient->stopCluster($projectId, $region, $clusterName);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var Cluster $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
{
$projectId = '[PROJECT_ID]';
$region = '[REGION]';
$clusterName = '[CLUSTER_NAME]';
stop_cluster_sample($projectId, $region, $clusterName);
}
updateCluster
Updates a cluster in a project. The returned Operation.metadata will be ClusterOperationMetadata.
The cluster must be in a RUNNING
state or an error
is returned.
Parameters | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Name | Description | ||||||||||
projectId |
string
Required. The ID of the Google Cloud Platform project the cluster belongs to. | ||||||||||
region |
string
Required. The Dataproc region in which to handle the request. | ||||||||||
clusterName |
string
Required. The cluster name. | ||||||||||
cluster |
Google\Cloud\Dataproc\V1\Cluster
Required. The changes to the cluster. | ||||||||||
updateMask |
Google\Protobuf\FieldMask
Required. Specifies the path, relative to
| ||||||||||
optionalArgs |
array
Optional. | ||||||||||
↳ gracefulDecommissionTimeout |
Duration
Optional. Timeout for graceful YARN decomissioning. Graceful decommissioning allows removing nodes from the cluster without interrupting jobs in progress. Timeout specifies how long to wait for jobs in progress to finish before forcefully removing nodes (and potentially interrupting jobs). Default timeout is 0 (for forceful decommission), and the maximum allowed timeout is 1 day. (see JSON representation of Duration). Only supported on Dataproc image versions 1.2 and higher. | ||||||||||
↳ requestId |
string
Optional. A unique ID used to identify the request. If the server receives two UpdateClusterRequests with the same id, then the second request will be ignored and the first google.longrunning.Operation created and stored in the backend is returned. It is recommended to always set this value to a UUID. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters. | ||||||||||
↳ retrySettings |
RetrySettings|array
Retry settings to use for this call. Can be a {@see} object, or an associative array of retry settings parameters. See the documentation on {@see} for example usage. |
Returns | |
---|---|
Type | Description |
Google\ApiCore\OperationResponse |
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Dataproc\V1\Cluster;
use Google\Cloud\Dataproc\V1\ClusterControllerClient;
use Google\Protobuf\FieldMask;
use Google\Rpc\Status;
/**
* @param string $projectId The ID of the Google Cloud Platform project the
* cluster belongs to.
* @param string $region The Dataproc region in which to handle the request.
* @param string $clusterName The cluster name.
* @param string $clusterProjectId The Google Cloud Platform project ID that the cluster belongs to.
* @param string $clusterClusterName The cluster name. Cluster names within a project must be
* unique. Names of deleted clusters can be reused.
*/
function update_cluster_sample(
string $projectId,
string $region,
string $clusterName,
string $clusterProjectId,
string $clusterClusterName
): void {
// Create a client.
$clusterControllerClient = new ClusterControllerClient();
// Prepare any non-scalar elements to be passed along with the request.
$cluster = (new Cluster())
->setProjectId($clusterProjectId)
->setClusterName($clusterClusterName);
$updateMask = new FieldMask();
// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $clusterControllerClient->updateCluster(
$projectId,
$region,
$clusterName,
$cluster,
$updateMask
);
$response->pollUntilComplete();
if ($response->operationSucceeded()) {
/** @var Cluster $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
{
$projectId = '[PROJECT_ID]';
$region = '[REGION]';
$clusterName = '[CLUSTER_NAME]';
$clusterProjectId = '[PROJECT_ID]';
$clusterClusterName = '[CLUSTER_NAME]';
update_cluster_sample($projectId, $region, $clusterName, $clusterProjectId, $clusterClusterName);
}
Constants
SERVICE_NAME
Value: 'google.cloud.dataproc.v1.ClusterController'
The name of the service.
SERVICE_ADDRESS
Value: 'dataproc.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.