/// <summary>Snippet for SubmitConfigSourceAsync</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 SubmitConfigSourceRequestObjectAsync()
        {
            // Create client
            ServiceManagerClient serviceManagerClient = await ServiceManagerClient.CreateAsync();

            // Initialize request argument(s)
            SubmitConfigSourceRequest request = new SubmitConfigSourceRequest
            {
                ServiceName  = "",
                ConfigSource = new ConfigSource(),
                ValidateOnly = false,
            };
            // Make the request
            Operation <SubmitConfigSourceResponse, OperationMetadata> response = await serviceManagerClient.SubmitConfigSourceAsync(request);

            // Poll until the returned long-running operation is complete
            Operation <SubmitConfigSourceResponse, OperationMetadata> completedResponse = await response.PollUntilCompletedAsync();

            // Retrieve the operation result
            SubmitConfigSourceResponse result = completedResponse.Result;

            // Or get the name of the operation
            string operationName = response.Name;
            // This name can be stored, then the long-running operation retrieved later by name
            Operation <SubmitConfigSourceResponse, OperationMetadata> retrievedResponse = await serviceManagerClient.PollOnceSubmitConfigSourceAsync(operationName);

            // Check if the retrieved long-running operation has completed
            if (retrievedResponse.IsCompleted)
            {
                // If it has completed, then access the result
                SubmitConfigSourceResponse retrievedResult = retrievedResponse.Result;
            }
        }
        /// <param name="body">A valid ServiceManagement v1 body.</param>
        /// <returns>OperationResponse</returns>
        public static Operation Submit(ServiceManagementService service, string serviceName, SubmitConfigSourceRequest body)
        {
            try
            {
                // Initial validation.
                if (service == null)
                {
                    throw new ArgumentNullException("service");
                }
                if (body == null)
                {
                    throw new ArgumentNullException("body");
                }
                if (serviceName == null)
                {
                    throw new ArgumentNullException(serviceName);
                }

                // Make the request.
                return(service.Configs.Submit(body, serviceName).Execute());
            }
            catch (Exception ex)
            {
                throw new Exception("Request Configs.Submit failed.", ex);
            }
        }