Exemplo n.º 1
0
 /// <summary>Snippet for UpdateEntry</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void UpdateEntry1()
 {
     // Create client
     DataCatalogClient dataCatalogClient = DataCatalogClient.Create();
     // Initialize request argument(s)
     Entry entry = new Entry();
     // Make the request
     Entry response = dataCatalogClient.UpdateEntry(entry);
 }
Exemplo n.º 2
0
 /// <summary>Snippet for UpdateEntry</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void UpdateEntry2()
 {
     // Create client
     DataCatalogClient dataCatalogClient = DataCatalogClient.Create();
     // Initialize request argument(s)
     Entry     entry      = new Entry();
     FieldMask updateMask = new FieldMask();
     // Make the request
     Entry response = dataCatalogClient.UpdateEntry(entry, updateMask);
 }
 /// <summary>Snippet for UpdateEntry</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void UpdateEntryRequestObject()
 {
     // Create client
     DataCatalogClient dataCatalogClient = DataCatalogClient.Create();
     // Initialize request argument(s)
     UpdateEntryRequest request = new UpdateEntryRequest
     {
         Entry      = new Entry(),
         UpdateMask = new FieldMask(),
     };
     // Make the request
     Entry response = dataCatalogClient.UpdateEntry(request);
 }