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: [AiPlatform] add Vertex RAG service proto to v1 #7843

Merged
merged 8 commits into from
Nov 25, 2024
Binary file added AiPlatform/metadata/V1/ApiAuth.php
Binary file not shown.
Binary file modified AiPlatform/metadata/V1/Endpoint.php
Binary file not shown.
14 changes: 10 additions & 4 deletions AiPlatform/metadata/V1/EndpointService.php

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

Binary file modified AiPlatform/metadata/V1/Io.php
Binary file not shown.
Binary file modified AiPlatform/metadata/V1/NotebookExecutionJob.php
Binary file not shown.
Binary file modified AiPlatform/metadata/V1/Tool.php
Binary file not shown.
Binary file added AiPlatform/metadata/V1/VertexRagData.php
Binary file not shown.
Binary file added AiPlatform/metadata/V1/VertexRagDataService.php
Binary file not shown.
Binary file added AiPlatform/metadata/V1/VertexRagService.php
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<?php
/*
* Copyright 2024 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_EndpointService_UpdateEndpointLongRunning_sync]
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\AIPlatform\V1\Client\EndpointServiceClient;
use Google\Cloud\AIPlatform\V1\Endpoint;
use Google\Cloud\AIPlatform\V1\UpdateEndpointLongRunningRequest;
use Google\Rpc\Status;

/**
* Updates an Endpoint with a long running operation.
*
* @param string $endpointDisplayName The display name of the Endpoint.
* The name can be up to 128 characters long and can consist of any UTF-8
* characters.
*/
function update_endpoint_long_running_sample(string $endpointDisplayName): void
{
// Create a client.
$endpointServiceClient = new EndpointServiceClient();

// Prepare the request message.
$endpoint = (new Endpoint())
->setDisplayName($endpointDisplayName);
$request = (new UpdateEndpointLongRunningRequest())
->setEndpoint($endpoint);

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

if ($response->operationSucceeded()) {
/** @var Endpoint $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
{
$endpointDisplayName = '[DISPLAY_NAME]';

update_endpoint_long_running_sample($endpointDisplayName);
}
// [END aiplatform_v1_generated_EndpointService_UpdateEndpointLongRunning_sync]
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<?php
/*
* Copyright 2024 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_VertexRagDataService_CreateRagCorpus_sync]
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\AIPlatform\V1\Client\VertexRagDataServiceClient;
use Google\Cloud\AIPlatform\V1\CreateRagCorpusRequest;
use Google\Cloud\AIPlatform\V1\RagCorpus;
use Google\Rpc\Status;

/**
* Creates a RagCorpus.
*
* @param string $formattedParent The resource name of the Location to create the RagCorpus in.
* Format: `projects/{project}/locations/{location}`
* Please see {@see VertexRagDataServiceClient::locationName()} for help formatting this field.
* @param string $ragCorpusDisplayName The display name of the RagCorpus.
* The name can be up to 128 characters long and can consist of any UTF-8
* characters.
*/
function create_rag_corpus_sample(string $formattedParent, string $ragCorpusDisplayName): void
{
// Create a client.
$vertexRagDataServiceClient = new VertexRagDataServiceClient();

// Prepare the request message.
$ragCorpus = (new RagCorpus())
->setDisplayName($ragCorpusDisplayName);
$request = (new CreateRagCorpusRequest())
->setParent($formattedParent)
->setRagCorpus($ragCorpus);

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

if ($response->operationSucceeded()) {
/** @var RagCorpus $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
{
$formattedParent = VertexRagDataServiceClient::locationName('[PROJECT]', '[LOCATION]');
$ragCorpusDisplayName = '[DISPLAY_NAME]';

create_rag_corpus_sample($formattedParent, $ragCorpusDisplayName);
}
// [END aiplatform_v1_generated_VertexRagDataService_CreateRagCorpus_sync]
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<?php
/*
* Copyright 2024 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_VertexRagDataService_DeleteRagCorpus_sync]
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\AIPlatform\V1\Client\VertexRagDataServiceClient;
use Google\Cloud\AIPlatform\V1\DeleteRagCorpusRequest;
use Google\Rpc\Status;

/**
* Deletes a RagCorpus.
*
* @param string $formattedName The name of the RagCorpus resource to be deleted.
* Format:
* `projects/{project}/locations/{location}/ragCorpora/{rag_corpus}`
* Please see {@see VertexRagDataServiceClient::ragCorpusName()} for help formatting this field.
*/
function delete_rag_corpus_sample(string $formattedName): void
{
// Create a client.
$vertexRagDataServiceClient = new VertexRagDataServiceClient();

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

// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $vertexRagDataServiceClient->deleteRagCorpus($request);
$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
{
$formattedName = VertexRagDataServiceClient::ragCorpusName(
'[PROJECT]',
'[LOCATION]',
'[RAG_CORPUS]'
);

delete_rag_corpus_sample($formattedName);
}
// [END aiplatform_v1_generated_VertexRagDataService_DeleteRagCorpus_sync]
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<?php
/*
* Copyright 2024 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_VertexRagDataService_DeleteRagFile_sync]
use Google\ApiCore\ApiException;
use Google\ApiCore\OperationResponse;
use Google\Cloud\AIPlatform\V1\Client\VertexRagDataServiceClient;
use Google\Cloud\AIPlatform\V1\DeleteRagFileRequest;
use Google\Rpc\Status;

/**
* Deletes a RagFile.
*
* @param string $formattedName The name of the RagFile resource to be deleted.
* Format:
* `projects/{project}/locations/{location}/ragCorpora/{rag_corpus}/ragFiles/{rag_file}`
* Please see {@see VertexRagDataServiceClient::ragFileName()} for help formatting this field.
*/
function delete_rag_file_sample(string $formattedName): void
{
// Create a client.
$vertexRagDataServiceClient = new VertexRagDataServiceClient();

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

// Call the API and handle any network failures.
try {
/** @var OperationResponse $response */
$response = $vertexRagDataServiceClient->deleteRagFile($request);
$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
{
$formattedName = VertexRagDataServiceClient::ragFileName(
'[PROJECT]',
'[LOCATION]',
'[RAG_CORPUS]',
'[RAG_FILE]'
);

delete_rag_file_sample($formattedName);
}
// [END aiplatform_v1_generated_VertexRagDataService_DeleteRagFile_sync]
Loading
Loading