Skip to content

Commit

Permalink
feat: Adds support for cancel Execution (#6653)
Browse files Browse the repository at this point in the history
feat: Adds support for Execution overrides
feat: Adds support for Direct VPC egress setting
feat: New fields for multi-container
feat: New field for Task's scheduled timestamp
docs: General documentation fixes.
PiperOrigin-RevId: 567710896
Source-Link: googleapis/googleapis@c5985fe
Source-Link: googleapis/googleapis-gen@0e5c6ac
Copy-Tag: eyJwIjoiUnVuLy5Pd2xCb3QueWFtbCIsImgiOiIwZTVjNmFjN2YzNTliYTE3NzY2MzRlMzZjM2MxNzRlZTcyYTA3ZWFjIn0=
  • Loading branch information
gcf-owl-bot[bot] committed Sep 27, 2023
1 parent 6030643 commit 91a0964
Show file tree
Hide file tree
Showing 41 changed files with 1,865 additions and 115 deletions.
Binary file modified Run/metadata/V2/Condition.php
Binary file not shown.
11 changes: 9 additions & 2 deletions Run/metadata/V2/Execution.php

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

51 changes: 36 additions & 15 deletions Run/metadata/V2/Job.php

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

Binary file modified Run/metadata/V2/K8SMin.php
Binary file not shown.
7 changes: 4 additions & 3 deletions Run/metadata/V2/Service.php

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

7 changes: 4 additions & 3 deletions Run/metadata/V2/Task.php

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

Binary file modified Run/metadata/V2/VendorSettings.php
Binary file not shown.
86 changes: 86 additions & 0 deletions Run/samples/V2/ExecutionsClient/cancel_execution.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<?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 run_v2_generated_Executions_CancelExecution_sync]
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\Run\V2\CancelExecutionRequest;
use Google\Cloud\Run\V2\Client\ExecutionsClient;
use Google\Cloud\Run\V2\Execution;
use Google\Rpc\Status;

/**
* Cancels an Execution.
*
* @param string $formattedName The name of the Execution to cancel.
* Format:
* `projects/{project}/locations/{location}/jobs/{job}/executions/{execution}`,
* where `{project}` can be project id or number. Please see
* {@see ExecutionsClient::executionName()} for help formatting this field.
*/
function cancel_execution_sample(string $formattedName): void
{
// Create a client.
$executionsClient = new ExecutionsClient();

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

// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $executionsClient->cancelExecution($request);
$response->pollUntilComplete();

if ($response->operationSucceeded()) {
/** @var Execution $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
{
$formattedName = ExecutionsClient::executionName('[PROJECT]', '[LOCATION]', '[JOB]', '[EXECUTION]');

cancel_execution_sample($formattedName);
}
// [END run_v2_generated_Executions_CancelExecution_sync]
4 changes: 2 additions & 2 deletions Run/samples/V2/ExecutionsClient/delete_execution.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
*
* @param string $formattedName The name of the Execution to delete.
* Format:
* projects/{project}/locations/{location}/jobs/{job}/executions/{execution},
* where {project} can be project id or number. Please see
* `projects/{project}/locations/{location}/jobs/{job}/executions/{execution}`,
* where `{project}` can be project id or number. Please see
* {@see ExecutionsClient::executionName()} for help formatting this field.
*/
function delete_execution_sample(string $formattedName): void
Expand Down
4 changes: 2 additions & 2 deletions Run/samples/V2/ExecutionsClient/get_execution.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
*
* @param string $formattedName The full name of the Execution.
* Format:
* projects/{project}/locations/{location}/jobs/{job}/executions/{execution},
* where {project} can be project id or number. Please see
* `projects/{project}/locations/{location}/jobs/{job}/executions/{execution}`,
* where `{project}` can be project id or number. Please see
* {@see ExecutionsClient::executionName()} for help formatting this field.
*/
function get_execution_sample(string $formattedName): void
Expand Down
4 changes: 2 additions & 2 deletions Run/samples/V2/ExecutionsClient/list_executions.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
*
* @param string $formattedParent The Execution from which the Executions should be listed.
* To list all Executions across Jobs, use "-" instead of Job name.
* Format: projects/{project}/locations/{location}/jobs/{job}, where {project}
* can be project id or number. Please see
* Format: `projects/{project}/locations/{location}/jobs/{job}`, where
* `{project}` can be project id or number. Please see
* {@see ExecutionsClient::jobName()} for help formatting this field.
*/
function list_executions_sample(string $formattedParent): void
Expand Down
Loading

0 comments on commit 91a0964

Please sign in to comment.