Skip to content

Commit a8ccdd8

Browse files
feat: [Datastream] Add new field salesforce_org to message DiscoverConnectionProfileRequest (#8496)
* feat: Add new field `salesforce_org` to message `DiscoverConnectionProfileRequest` feat: Add new field `mongodb_cluster` to message `DiscoverConnectionProfileRequest` feat: Add new field `validate_only` to message `CreatePrivateConnectionRequest` feat: Add new field `psc_interface_config` to message `PrivateConnection` feat: Add new field for server certificate to message `OracleSslConfig` feat: Add new field for server certificate to message `PostgresqlSslConfig` feat: Add new field `mongodb_profile` to message `ConnectionProfile` feat: Add new field `project_id` to message `BigQueryDestinationConfig` PiperOrigin-RevId: 792073655 Source-Link: googleapis/googleapis@ee5d4f3 Source-Link: googleapis/googleapis-gen@89d4236 Copy-Tag: eyJwIjoiRGF0YXN0cmVhbS8uT3dsQm90LnlhbWwiLCJoIjoiODlkNDIzNjUxNWUxMGI0ZjdiN2VjMmI4Zjk4MTMwNTdjNjkyNDgwMyJ9 * 🦉 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 3e4b2e8 commit a8ccdd8

28 files changed

Lines changed: 2097 additions & 0 deletions
308 Bytes
Binary file not shown.
2.25 KB
Binary file not shown.

Datastream/src/V1/BigQueryDestinationConfig/SourceHierarchyDatasets.php

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

Datastream/src/V1/Client/DatastreamClient.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,25 @@ public static function locationName(string $project, string $location): string
250250
]);
251251
}
252252

253+
/**
254+
* Formats a string containing the fully-qualified path to represent a
255+
* network_attachment resource.
256+
*
257+
* @param string $project
258+
* @param string $region
259+
* @param string $networkAttachment
260+
*
261+
* @return string The formatted network_attachment resource.
262+
*/
263+
public static function networkAttachmentName(string $project, string $region, string $networkAttachment): string
264+
{
265+
return self::getPathTemplate('networkAttachment')->render([
266+
'project' => $project,
267+
'region' => $region,
268+
'network_attachment' => $networkAttachment,
269+
]);
270+
}
271+
253272
/**
254273
* Formats a string containing the fully-qualified path to represent a networks
255274
* resource.
@@ -357,6 +376,7 @@ public static function streamObjectName(string $project, string $location, strin
357376
* Template: Pattern
358377
* - connectionProfile: projects/{project}/locations/{location}/connectionProfiles/{connection_profile}
359378
* - location: projects/{project}/locations/{location}
379+
* - networkAttachment: projects/{project}/regions/{region}/networkAttachments/{network_attachment}
360380
* - networks: projects/{project}/global/networks/{network}
361381
* - privateConnection: projects/{project}/locations/{location}/privateConnections/{private_connection}
362382
* - route: projects/{project}/locations/{location}/privateConnections/{private_connection}/routes/{route}

Datastream/src/V1/ConnectionProfile.php

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

Datastream/src/V1/CreatePrivateConnectionRequest.php

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

Datastream/src/V1/DiscoverConnectionProfileRequest.php

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

Datastream/src/V1/DiscoverConnectionProfileResponse.php

Lines changed: 66 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)