/// <summary>Snippet for UpdateTableSpecAsync</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 UpdateTableSpecAsync()
        {
            // Create client
            AutoMlClient autoMlClient = await AutoMlClient.CreateAsync();

            // Initialize request argument(s)
            TableSpec tableSpec = new TableSpec();
            // Make the request
            TableSpec response = await autoMlClient.UpdateTableSpecAsync(tableSpec);
        }
Beispiel #2
0
        /// <summary>Snippet for UpdateTableSpecAsync</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 UpdateTableSpecRequestObjectAsync()
        {
            // Create client
            AutoMlClient autoMlClient = await AutoMlClient.CreateAsync();

            // Initialize request argument(s)
            UpdateTableSpecRequest request = new UpdateTableSpecRequest
            {
                TableSpec  = new TableSpec(),
                UpdateMask = new FieldMask(),
            };
            // Make the request
            TableSpec response = await autoMlClient.UpdateTableSpecAsync(request);
        }