/// <summary>Snippet for UpdateEntryAsync</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public async Task UpdateEntry1Async() { // Create client DataCatalogClient dataCatalogClient = await DataCatalogClient.CreateAsync(); // Initialize request argument(s) Entry entry = new Entry(); // Make the request Entry response = await dataCatalogClient.UpdateEntryAsync(entry); }
/// <summary>Snippet for UpdateEntryAsync</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public async Task UpdateEntryRequestObjectAsync() { // Create client DataCatalogClient dataCatalogClient = await DataCatalogClient.CreateAsync(); // Initialize request argument(s) UpdateEntryRequest request = new UpdateEntryRequest { Entry = new Entry(), UpdateMask = new FieldMask(), }; // Make the request Entry response = await dataCatalogClient.UpdateEntryAsync(request); }