Example #1
0
 /// <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 UpdateEntryGroup1()
 {
     // Create client
     DataCatalogClient dataCatalogClient = DataCatalogClient.Create();
     // Initialize request argument(s)
     EntryGroup entryGroup = new EntryGroup();
     // Make the request
     EntryGroup response = dataCatalogClient.UpdateEntryGroup(entryGroup);
 }
 /// <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 UpdateEntryGroup2()
 {
     // Create client
     DataCatalogClient dataCatalogClient = DataCatalogClient.Create();
     // Initialize request argument(s)
     EntryGroup entryGroup = new EntryGroup();
     FieldMask  updateMask = new FieldMask();
     // Make the request
     EntryGroup response = dataCatalogClient.UpdateEntryGroup(entryGroup, updateMask);
 }
 /// <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);
 }