feat: API regeneration: 20260508T070106Z#15606
Conversation
feat: Support force notify and silent notification option for CreateMessage PiperOrigin-RevId: 912156703 Source-Link: googleapis/googleapis@08fe47a
…810d0e feat: A new method SearchLineageStreaming is added docs: Documentation for SearchLineageStreaming API was added feat: SearchLinks can now accept multiple source and target entity references as search criteria feat: Added support for column level lineage information to be passed and returned from the Lineage service The `field` field in EntityReference allows to add column level information when creating events. This is also returned in links along with DependencyInfo that describes the type of dependency described in the link. PiperOrigin-RevId: 912099814 Source-Link: googleapis/googleapis@6810d0e
fix: Restore google-iam-v3beta gem name PiperOrigin-RevId: 912134451 Source-Link: googleapis/googleapis@392c8aa
|
Pull request diff results Diff level: Minor Comparing with previous NuGet package Diff level: Minor Finished comparisons for Google.Apps.Chat.V1 Finding changes in Google.Cloud.DataCatalog.Lineage.V1... Diff level: Minor Comparing with previous NuGet package Diff level: Minor Finished comparisons for Google.Cloud.DataCatalog.Lineage.V1 Finding changes in Google.Cloud.GeminiDataAnalytics.V1... |
There was a problem hiding this comment.
Code Review
This pull request introduces the new Google Cloud Gemini Data Analytics V1 API client, including its core services and snippets. It also enhances the Google Chat API client by adding CreateMessageNotificationOptions and a silent field to messages. For the Data Catalog Lineage API client, a new SearchLineageStreaming method has been added, and RequestId generation logic was introduced for several Create and ProcessOpenLineageRunEvent methods. However, the current implementation for UpdateProcess methods in the Lineage client attempts to access a RequestId field that does not exist, which will lead to compilation errors.
| if (request.RequestId == "") | ||
| { | ||
| request = request.Clone(); | ||
| request.RequestId = gax::FieldFormats.GenerateUuid4(); | ||
| } |
| if (request.RequestId == "") | ||
| { | ||
| request = request.Clone(); | ||
| request.RequestId = gax::FieldFormats.GenerateUuid4(); | ||
| } |
Changes in this PR