-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Vertex RAG service proto to v1 (#7843)
feat: add CustomEnvironmentSpec to NotebookExecutionJob PiperOrigin-RevId: 697694162 Source-Link: googleapis/googleapis@7b30cb5 Source-Link: googleapis/googleapis-gen@7243ba9 Copy-Tag: eyJwIjoiQWlQbGF0Zm9ybS8uT3dsQm90LnlhbWwiLCJoIjoiNzI0M2JhOWJjOTRkNDNhYWMzNGE5ZGYzOTY0ZjhlNTdiNWUzNjNhYyJ9 feat: add a v1 UpdateEndpointLongRunning API PiperOrigin-RevId: 697715678 Source-Link: googleapis/googleapis@4ab02f3 Source-Link: googleapis/googleapis-gen@829605e Copy-Tag: eyJwIjoiQWlQbGF0Zm9ybS8uT3dsQm90LnlhbWwiLCJoIjoiODI5NjA1ZTE2ZGVlMWQ4ZDc5NWQ0ZGVhNDViNGMxMmQ4ZDk4M2ExYyJ9 * feat: add Vertex RAG service proto to v1 PiperOrigin-RevId: 698990917 Source-Link: googleapis/googleapis@6f7652b Source-Link: googleapis/googleapis-gen@b15d3ee Copy-Tag: eyJwIjoiQWlQbGF0Zm9ybS8uT3dsQm90LnlhbWwiLCJoIjoiYjE1ZDNlZThlNWRhN2UwNDBmNGMxNjA1NGFiZjNmOWFiMjMzMmY5ZiJ9
- Loading branch information
1 parent
41e996e
commit 229d803
Showing
154 changed files
with
21,671 additions
and
4 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
86 changes: 86 additions & 0 deletions
86
AiPlatform/samples/V1/EndpointServiceClient/update_endpoint_long_running.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |
91 changes: 91 additions & 0 deletions
91
AiPlatform/samples/V1/VertexRagDataServiceClient/create_rag_corpus.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |
86 changes: 86 additions & 0 deletions
86
AiPlatform/samples/V1/VertexRagDataServiceClient/delete_rag_corpus.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |
87 changes: 87 additions & 0 deletions
87
AiPlatform/samples/V1/VertexRagDataServiceClient/delete_rag_file.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |
Oops, something went wrong.