Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [Compute] Update Compute Engine API to revision 20230307 (#786) #5986

Merged
merged 4 commits into from Mar 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Binary file modified Compute/metadata/V1/Compute.php
Binary file not shown.
@@ -0,0 +1,87 @@
<?php
/*
* Copyright 2023 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/*
* GENERATED CODE WARNING
* This file was automatically generated - do not edit!
*/

require_once __DIR__ . '/../../../vendor/autoload.php';

// [START compute_v1_generated_NodeGroups_SimulateMaintenanceEvent_sync]
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Compute\V1\NodeGroupsClient;
use Google\Cloud\Compute\V1\NodeGroupsSimulateMaintenanceEventRequest;
use Google\Rpc\Status;

/**
* Simulates maintenance event on specified nodes from the node group.
*
* @param string $nodeGroup Name of the NodeGroup resource whose nodes will go under maintenance simulation.
* @param string $project Project ID for this request.
* @param string $zone The name of the zone for this request.
*/
function simulate_maintenance_event_sample(string $nodeGroup, string $project, string $zone): void
{
// Create a client.
$nodeGroupsClient = new NodeGroupsClient();

// Prepare any non-scalar elements to be passed along with the request.
$nodeGroupsSimulateMaintenanceEventRequestResource = new NodeGroupsSimulateMaintenanceEventRequest();

// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $nodeGroupsClient->simulateMaintenanceEvent(
$nodeGroup,
$nodeGroupsSimulateMaintenanceEventRequestResource,
$project,
$zone
);
$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
{
$nodeGroup = '[NODE_GROUP]';
$project = '[PROJECT]';
$zone = '[ZONE]';

simulate_maintenance_event_sample($nodeGroup, $project, $zone);
}
// [END compute_v1_generated_NodeGroups_SimulateMaintenanceEvent_sync]
2 changes: 2 additions & 0 deletions Compute/src/V1/Enums/GuestOsFeature/Type.php
Expand Up @@ -42,6 +42,8 @@ class Type

const SEV_CAPABLE = 'SEV_CAPABLE';

const SEV_LIVE_MIGRATABLE = 'SEV_LIVE_MIGRATABLE';

const SEV_SNP_CAPABLE = 'SEV_SNP_CAPABLE';

const UEFI_COMPATIBLE = 'UEFI_COMPATIBLE';
Expand Down
81 changes: 81 additions & 0 deletions Compute/src/V1/Gapic/NodeGroupsGapicClient.php
Expand Up @@ -49,11 +49,13 @@
use Google\Cloud\Compute\V1\NodeGroupsDeleteNodesRequest;
use Google\Cloud\Compute\V1\NodeGroupsListNodes;
use Google\Cloud\Compute\V1\NodeGroupsSetNodeTemplateRequest;
use Google\Cloud\Compute\V1\NodeGroupsSimulateMaintenanceEventRequest;
use Google\Cloud\Compute\V1\Operation;
use Google\Cloud\Compute\V1\PatchNodeGroupRequest;
use Google\Cloud\Compute\V1\Policy;
use Google\Cloud\Compute\V1\SetIamPolicyNodeGroupRequest;
use Google\Cloud\Compute\V1\SetNodeTemplateNodeGroupRequest;
use Google\Cloud\Compute\V1\SimulateMaintenanceEventNodeGroupRequest;
use Google\Cloud\Compute\V1\TestIamPermissionsNodeGroupRequest;
use Google\Cloud\Compute\V1\TestPermissionsRequest;
use Google\Cloud\Compute\V1\TestPermissionsResponse;
Expand Down Expand Up @@ -1156,6 +1158,85 @@ public function setNodeTemplate($nodeGroup, $nodeGroupsSetNodeTemplateRequestRes
return $this->startOperationsCall('SetNodeTemplate', $optionalArgs, $request, $this->getOperationsClient(), null, Operation::class)->wait();
}

/**
* Simulates maintenance event on specified nodes from the node group.
*
* Sample code:
* ```
* $nodeGroupsClient = new NodeGroupsClient();
* try {
* $nodeGroup = 'node_group';
* $nodeGroupsSimulateMaintenanceEventRequestResource = new NodeGroupsSimulateMaintenanceEventRequest();
* $project = 'project';
* $zone = 'zone';
* $operationResponse = $nodeGroupsClient->simulateMaintenanceEvent($nodeGroup, $nodeGroupsSimulateMaintenanceEventRequestResource, $project, $zone);
* $operationResponse->pollUntilComplete();
* if ($operationResponse->operationSucceeded()) {
* // if creating/modifying, retrieve the target resource
* } else {
* $error = $operationResponse->getError();
* // handleError($error)
* }
* // Alternatively:
* // start the operation, keep the operation name, and resume later
* $operationResponse = $nodeGroupsClient->simulateMaintenanceEvent($nodeGroup, $nodeGroupsSimulateMaintenanceEventRequestResource, $project, $zone);
* $operationName = $operationResponse->getName();
* // ... do other work
* $newOperationResponse = $nodeGroupsClient->resumeOperation($operationName, 'simulateMaintenanceEvent');
* while (!$newOperationResponse->isDone()) {
* // ... do other work
* $newOperationResponse->reload();
* }
* if ($newOperationResponse->operationSucceeded()) {
* // if creating/modifying, retrieve the target resource
* } else {
* $error = $newOperationResponse->getError();
* // handleError($error)
* }
* } finally {
* $nodeGroupsClient->close();
* }
* ```
*
* @param string $nodeGroup Name of the NodeGroup resource whose nodes will go under maintenance simulation.
* @param NodeGroupsSimulateMaintenanceEventRequest $nodeGroupsSimulateMaintenanceEventRequestResource The body resource for this request
* @param string $project Project ID for this request.
* @param string $zone The name of the zone for this request.
* @param array $optionalArgs {
* Optional.
*
* @type string $requestId
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
* @type RetrySettings|array $retrySettings
* Retry settings to use for this call. Can be a {@see RetrySettings} object, or an
* associative array of retry settings parameters. See the documentation on
* {@see RetrySettings} for example usage.
* }
*
* @return \Google\ApiCore\OperationResponse
*
* @throws ApiException if the remote call fails
*/
public function simulateMaintenanceEvent($nodeGroup, $nodeGroupsSimulateMaintenanceEventRequestResource, $project, $zone, array $optionalArgs = [])
{
$request = new SimulateMaintenanceEventNodeGroupRequest();
$requestParamHeaders = [];
$request->setNodeGroup($nodeGroup);
$request->setNodeGroupsSimulateMaintenanceEventRequestResource($nodeGroupsSimulateMaintenanceEventRequestResource);
$request->setProject($project);
$request->setZone($zone);
$requestParamHeaders['node_group'] = $nodeGroup;
$requestParamHeaders['project'] = $project;
$requestParamHeaders['zone'] = $zone;
if (isset($optionalArgs['requestId'])) {
$request->setRequestId($optionalArgs['requestId']);
}

$requestParams = new RequestParamsHeaderDescriptor($requestParamHeaders);
$optionalArgs['headers'] = isset($optionalArgs['headers']) ? array_merge($requestParams->getHeader(), $optionalArgs['headers']) : $requestParams->getHeader();
return $this->startOperationsCall('SimulateMaintenanceEvent', $optionalArgs, $request, $this->getOperationsClient(), null, Operation::class)->wait();
}

/**
* Returns permissions that a caller has on the specified resource.
*
Expand Down
5 changes: 5 additions & 0 deletions Compute/src/V1/GuestOsFeature/Type.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 66 additions & 0 deletions Compute/src/V1/NodeGroupsSimulateMaintenanceEventRequest.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.