/// <summary> /// Creates a new API. /// /// </summary> /// <param name="request">The request object containing the details to send. Required.</param> /// <param name="retryConfiguration">The retry configuration that will be used by to send this request. Optional.</param> /// <param name="cancellationToken">The cancellation token to cancel this operation. Optional.</param> /// <returns>A response object containing details about the completed operation</returns> /// <example>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/dot-net-examples/latest/apigateway/CreateApi.cs.html">here</a> to see an example of how to use CreateApi API.</example> public async Task <CreateApiResponse> CreateApi(CreateApiRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default) { logger.Trace("Called createApi"); Uri uri = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/apis".Trim('/'))); HttpMethod method = new HttpMethod("POST"); HttpRequestMessage requestMessage = Converter.ToHttpRequestMessage(uri, method, request); requestMessage.Headers.Add("Accept", "application/json"); GenericRetrier retryingClient = Retrier.GetPreferredRetrier(retryConfiguration, this.retryConfiguration); HttpResponseMessage responseMessage; try { if (retryingClient != null) { responseMessage = await retryingClient.MakeRetryingCall(this.restClient.HttpSend, requestMessage, cancellationToken).ConfigureAwait(false); } else { responseMessage = await this.restClient.HttpSend(requestMessage).ConfigureAwait(false); } this.restClient.CheckHttpResponseMessage(requestMessage, responseMessage); return(Converter.FromHttpResponseMessage <CreateApiResponse>(responseMessage)); } catch (Exception e) { logger.Error($"CreateApi failed with error: {e.Message}"); throw; } }
/// <summary>Snippet for CreateApiAsync</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 CreateApiRequestObjectAsync() { // Create client ApiGatewayServiceClient apiGatewayServiceClient = await ApiGatewayServiceClient.CreateAsync(); // Initialize request argument(s) CreateApiRequest request = new CreateApiRequest { ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"), ApiId = "", Api = new Api(), }; // Make the request Operation <Api, OperationMetadata> response = await apiGatewayServiceClient.CreateApiAsync(request); // Poll until the returned long-running operation is complete Operation <Api, OperationMetadata> completedResponse = await response.PollUntilCompletedAsync(); // Retrieve the operation result Api 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 <Api, OperationMetadata> retrievedResponse = await apiGatewayServiceClient.PollOnceCreateApiAsync(operationName); // Check if the retrieved long-running operation has completed if (retrievedResponse.IsCompleted) { // If it has completed, then access the result Api retrievedResult = retrievedResponse.Result; } }
protected override void ProcessRecord() { base.ProcessRecord(); CreateApiRequest request; try { request = new CreateApiRequest { CreateApiDetails = CreateApiDetails, OpcRetryToken = OpcRetryToken, OpcRequestId = OpcRequestId }; response = client.CreateApi(request).GetAwaiter().GetResult(); WriteOutput(response, response.Api); FinishProcessing(response); } catch (Exception ex) { TerminatingErrorDuringExecution(ex); } }