Skip to content

Commit

Permalink
feat: update field_behavior for name to be IMMUTABLE instead of OUT…
Browse files Browse the repository at this point in the history
…PUT_ONLY in Context, ModelMonitor, Schedule, DeploymentResourcePool (#6563)

feat: Expose CreateDatasetVersionOperationMetadata and RestoreDatasetVersionOperationMetadata to DatasetService
feat: add disk_type and disk_size_gb to PersistentDiskSpec
feat: add schedule_name to PipelineJob
feat: add open_evaluation_pipeline to PublisherModel
feat: add ReadTensorboardSize to TensorboardService
PiperOrigin-RevId: 557171397
Source-Link: googleapis/googleapis@e5441b2
Source-Link: googleapis/googleapis-gen@6ba37ee
Copy-Tag: eyJwIjoiQWlQbGF0Zm9ybS8uT3dsQm90LnlhbWwiLCJoIjoiNmJhMzdlZTdiM2RjNmY3Mjg0MTZhNTdhZWNjNzk5MzJiZGNmZTQzZCJ9
  • Loading branch information
gcf-owl-bot[bot] committed Aug 17, 2023
1 parent c7ee54f commit 33cc60c
Show file tree
Hide file tree
Showing 29 changed files with 800 additions and 19 deletions.
2 changes: 1 addition & 1 deletion AiPlatform/metadata/V1/Context.php

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

Binary file modified AiPlatform/metadata/V1/CustomJob.php
Binary file not shown.
Binary file modified AiPlatform/metadata/V1/DatasetService.php
Binary file not shown.
Binary file modified AiPlatform/metadata/V1/PipelineJob.php
Binary file not shown.
Binary file modified AiPlatform/metadata/V1/PublisherModel.php
Binary file not shown.
Binary file modified AiPlatform/metadata/V1/Schedule.php
Binary file not shown.
14 changes: 10 additions & 4 deletions AiPlatform/metadata/V1/TensorboardService.php

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?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 aiplatform_v1_generated_TensorboardService_ReadTensorboardSize_sync]
use Google\ApiCore\ApiException;
use Google\Cloud\AIPlatform\V1\Client\TensorboardServiceClient;
use Google\Cloud\AIPlatform\V1\ReadTensorboardSizeRequest;
use Google\Cloud\AIPlatform\V1\ReadTensorboardSizeResponse;

/**
* Returns the storage size for a given TensorBoard instance.
*
* @param string $formattedTensorboard The name of the Tensorboard resource.
* Format:
* `projects/{project}/locations/{location}/tensorboards/{tensorboard}`
* Please see {@see TensorboardServiceClient::tensorboardName()} for help formatting this field.
*/
function read_tensorboard_size_sample(string $formattedTensorboard): void
{
// Create a client.
$tensorboardServiceClient = new TensorboardServiceClient();

// Prepare the request message.
$request = (new ReadTensorboardSizeRequest())
->setTensorboard($formattedTensorboard);

// Call the API and handle any network failures.
try {
/** @var ReadTensorboardSizeResponse $response */
$response = $tensorboardServiceClient->readTensorboardSize($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
{
$formattedTensorboard = TensorboardServiceClient::tensorboardName(
'[PROJECT]',
'[LOCATION]',
'[TENSORBOARD]'
);

read_tensorboard_size_sample($formattedTensorboard);
}
// [END aiplatform_v1_generated_TensorboardService_ReadTensorboardSize_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@
use Google\Cloud\AIPlatform\V1\ListTensorboardTimeSeriesRequest;
use Google\Cloud\AIPlatform\V1\ListTensorboardsRequest;
use Google\Cloud\AIPlatform\V1\ReadTensorboardBlobDataRequest;
use Google\Cloud\AIPlatform\V1\ReadTensorboardSizeRequest;
use Google\Cloud\AIPlatform\V1\ReadTensorboardSizeResponse;
use Google\Cloud\AIPlatform\V1\ReadTensorboardTimeSeriesDataRequest;
use Google\Cloud\AIPlatform\V1\ReadTensorboardTimeSeriesDataResponse;
use Google\Cloud\AIPlatform\V1\ReadTensorboardUsageRequest;
Expand Down Expand Up @@ -126,6 +128,7 @@
* @method PromiseInterface listTensorboardRunsAsync(ListTensorboardRunsRequest $request, array $optionalArgs = [])
* @method PromiseInterface listTensorboardTimeSeriesAsync(ListTensorboardTimeSeriesRequest $request, array $optionalArgs = [])
* @method PromiseInterface listTensorboardsAsync(ListTensorboardsRequest $request, array $optionalArgs = [])
* @method PromiseInterface readTensorboardSizeAsync(ReadTensorboardSizeRequest $request, array $optionalArgs = [])
* @method PromiseInterface readTensorboardTimeSeriesDataAsync(ReadTensorboardTimeSeriesDataRequest $request, array $optionalArgs = [])
* @method PromiseInterface readTensorboardUsageAsync(ReadTensorboardUsageRequest $request, array $optionalArgs = [])
* @method PromiseInterface updateTensorboardAsync(UpdateTensorboardRequest $request, array $optionalArgs = [])
Expand Down Expand Up @@ -968,6 +971,32 @@ public function readTensorboardBlobData(ReadTensorboardBlobDataRequest $request,
return $this->startApiCall('ReadTensorboardBlobData', $request, $callOptions);
}

/**
* Returns the storage size for a given TensorBoard instance.
*
* The async variant is {@see self::readTensorboardSizeAsync()} .
*
* @example samples/V1/TensorboardServiceClient/read_tensorboard_size.php
*
* @param ReadTensorboardSizeRequest $request A request to house fields associated with the call.
* @param array $callOptions {
* Optional.
*
* @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 ReadTensorboardSizeResponse
*
* @throws ApiException Thrown if the API call fails.
*/
public function readTensorboardSize(ReadTensorboardSizeRequest $request, array $callOptions = []): ReadTensorboardSizeResponse
{
return $this->startApiCall('ReadTensorboardSize', $request, $callOptions)->wait();
}

/**
* Reads a TensorboardTimeSeries' data. By default, if the number of data
* points stored is less than 1000, all data is returned. Otherwise, 1000
Expand Down
14 changes: 7 additions & 7 deletions AiPlatform/src/V1/Context.php

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

78 changes: 78 additions & 0 deletions AiPlatform/src/V1/CreateDatasetVersionOperationMetadata.php

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

3 changes: 3 additions & 0 deletions AiPlatform/src/V1/Gapic/ScheduleServiceGapicClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,7 @@ public function getSchedule($name, array $optionalArgs = [])
* descending order.
*
* Supported fields:
*
* * `create_time`
* * `start_time`
* * `end_time`
Expand Down Expand Up @@ -1058,7 +1059,9 @@ public function resumeSchedule($name, array $optionalArgs = [])
*
* @param Schedule $schedule Required. The Schedule which replaces the resource on the server.
* The following restrictions will be applied:
*
* * The scheduled request type cannot be changed.
* * The non-empty fields cannot be unset.
* * The output_only fields will be ignored if specified.
* @param FieldMask $updateMask Required. The update mask applies to the resource. See
* [google.protobuf.FieldMask][google.protobuf.FieldMask].
Expand Down
52 changes: 52 additions & 0 deletions AiPlatform/src/V1/Gapic/TensorboardServiceGapicClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@
use Google\Cloud\AIPlatform\V1\ListTensorboardsResponse;
use Google\Cloud\AIPlatform\V1\ReadTensorboardBlobDataRequest;
use Google\Cloud\AIPlatform\V1\ReadTensorboardBlobDataResponse;
use Google\Cloud\AIPlatform\V1\ReadTensorboardSizeRequest;
use Google\Cloud\AIPlatform\V1\ReadTensorboardSizeResponse;
use Google\Cloud\AIPlatform\V1\ReadTensorboardTimeSeriesDataRequest;
use Google\Cloud\AIPlatform\V1\ReadTensorboardTimeSeriesDataResponse;
use Google\Cloud\AIPlatform\V1\ReadTensorboardUsageRequest;
Expand Down Expand Up @@ -2031,6 +2033,56 @@ public function readTensorboardBlobData(
);
}

/**
* Returns the storage size for a given TensorBoard instance.
*
* Sample code:
* ```
* $tensorboardServiceClient = new TensorboardServiceClient();
* try {
* $formattedTensorboard = $tensorboardServiceClient->tensorboardName('[PROJECT]', '[LOCATION]', '[TENSORBOARD]');
* $response = $tensorboardServiceClient->readTensorboardSize($formattedTensorboard);
* } finally {
* $tensorboardServiceClient->close();
* }
* ```
*
* @param string $tensorboard Required. The name of the Tensorboard resource.
* Format:
* `projects/{project}/locations/{location}/tensorboards/{tensorboard}`
* @param array $optionalArgs {
* Optional.
*
* @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\Cloud\AIPlatform\V1\ReadTensorboardSizeResponse
*
* @throws ApiException if the remote call fails
*/
public function readTensorboardSize($tensorboard, array $optionalArgs = [])
{
$request = new ReadTensorboardSizeRequest();
$requestParamHeaders = [];
$request->setTensorboard($tensorboard);
$requestParamHeaders['tensorboard'] = $tensorboard;
$requestParams = new RequestParamsHeaderDescriptor(
$requestParamHeaders
);
$optionalArgs['headers'] = isset($optionalArgs['headers'])
? array_merge($requestParams->getHeader(), $optionalArgs['headers'])
: $requestParams->getHeader();
return $this->startCall(
'ReadTensorboardSize',
ReadTensorboardSizeResponse::class,
$optionalArgs,
$request
)->wait();
}

/**
* Reads a TensorboardTimeSeries' data. By default, if the number of data
* points stored is less than 1000, all data is returned. Otherwise, 1000
Expand Down
Loading

0 comments on commit 33cc60c

Please sign in to comment.