Skip to content

Commit 2777b8b

Browse files
feat: [AiPlatform] Add support for developer connect based deployment (#8742)
* feat: Add support for developer connect based deployment docs: A comment for message `ReasoningEngineSpec` is changed docs: A comment for field `package_spec` in message `.google.cloud.aiplatform.v1.ReasoningEngineSpec` is changed PiperOrigin-RevId: 833911903 Source-Link: googleapis/googleapis@8d526e8 Source-Link: googleapis/googleapis-gen@884e94d Copy-Tag: eyJwIjoiQWlQbGF0Zm9ybS8uT3dsQm90LnlhbWwiLCJoIjoiODg0ZTk0ZDg5MWJjNmU5ZmUxMWU2NGUyNzkxMDljNWFhZDk4NTNjOCJ9 feat: add `gpu_partition_size` in `machine_spec` v1 api PiperOrigin-RevId: 833901564 Source-Link: googleapis/googleapis@df29a82 Source-Link: googleapis/googleapis-gen@13de57f Copy-Tag: eyJwIjoiQWlQbGF0Zm9ybS8uT3dsQm90LnlhbWwiLCJoIjoiMTNkZTU3ZmFiMjJlMzE2YzhiY2ExMjk3Nzg1YjU0Nzg4M2UyZjA1NyJ9 feat: add `ReplicatedVoiceConfig` to `VoiceConfig` to enable Gemini TTS voice replication PiperOrigin-RevId: 833480721 Source-Link: googleapis/googleapis@136201b Source-Link: googleapis/googleapis-gen@3dea11e Copy-Tag: eyJwIjoiQWlQbGF0Zm9ybS8uT3dsQm90LnlhbWwiLCJoIjoiM2RlYTExZTg4OTQxMGYwZmY3Yzc5ZDc4OGRhZjRlNzAxNmZhMTBjNyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent a19b5e1 commit 2777b8b

18 files changed

Lines changed: 1077 additions & 19 deletions

AiPlatform/metadata/V1/Content.php

865 Bytes
Binary file not shown.

AiPlatform/metadata/V1/MachineResources.php

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
576 Bytes
Binary file not shown.

AiPlatform/src/V1/Client/ReasoningEngineServiceClient.php

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,31 @@ private function createOperationsClient(array $options)
172172
return new OperationsClient($options);
173173
}
174174

175+
/**
176+
* Formats a string containing the fully-qualified path to represent a
177+
* git_repository_link resource.
178+
*
179+
* @param string $project
180+
* @param string $location
181+
* @param string $connection
182+
* @param string $gitRepositoryLink
183+
*
184+
* @return string The formatted git_repository_link resource.
185+
*/
186+
public static function gitRepositoryLinkName(
187+
string $project,
188+
string $location,
189+
string $connection,
190+
string $gitRepositoryLink
191+
): string {
192+
return self::getPathTemplate('gitRepositoryLink')->render([
193+
'project' => $project,
194+
'location' => $location,
195+
'connection' => $connection,
196+
'git_repository_link' => $gitRepositoryLink,
197+
]);
198+
}
199+
175200
/**
176201
* Formats a string containing the fully-qualified path to represent a location
177202
* resource.
@@ -231,6 +256,7 @@ public static function reasoningEngineName(string $project, string $location, st
231256
* Parses a formatted name string and returns an associative array of the components in the name.
232257
* The following name formats are supported:
233258
* Template: Pattern
259+
* - gitRepositoryLink: projects/{project}/locations/{location}/connections/{connection}/gitRepositoryLinks/{git_repository_link}
234260
* - location: projects/{project}/locations/{location}
235261
* - networkAttachment: projects/{project}/regions/{region}/networkAttachments/{networkattachment}
236262
* - reasoningEngine: projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}

AiPlatform/src/V1/GenerationConfig.php

Lines changed: 44 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AiPlatform/src/V1/MachineSpec.php

Lines changed: 74 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AiPlatform/src/V1/MultiSpeakerVoiceConfig.php

Lines changed: 71 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AiPlatform/src/V1/PrebuiltVoiceConfig.php

Lines changed: 77 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)