/// <summary>Snippet for UpdateEntryGroup</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void UpdateEntryGroupRequestObject()
 {
     // Create client
     DataCatalogClient dataCatalogClient = DataCatalogClient.Create();
     // Initialize request argument(s)
     UpdateEntryGroupRequest request = new UpdateEntryGroupRequest
     {
         EntryGroup = new EntryGroup(),
         UpdateMask = new FieldMask(),
     };
     // Make the request
     EntryGroup response = dataCatalogClient.UpdateEntryGroup(request);
 }
        /// <summary>Snippet for UpdateEntryGroupAsync</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 UpdateEntryGroupRequestObjectAsync()
        {
            // Create client
            DataCatalogClient dataCatalogClient = await DataCatalogClient.CreateAsync();

            // Initialize request argument(s)
            UpdateEntryGroupRequest request = new UpdateEntryGroupRequest
            {
                EntryGroup = new EntryGroup(),
                UpdateMask = new FieldMask(),
            };
            // Make the request
            EntryGroup response = await dataCatalogClient.UpdateEntryGroupAsync(request);
        }