com.oracle.bmc.apigateway.DeploymentAsyncClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oci-java-sdk-apigateway Show documentation
Show all versions of oci-java-sdk-apigateway Show documentation
This project contains the SDK used for Oracle Cloud Infrastructure Apigateway
/**
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
*/
package com.oracle.bmc.apigateway;
import com.oracle.bmc.util.internal.Validate;
import com.oracle.bmc.apigateway.requests.*;
import com.oracle.bmc.apigateway.responses.*;
import java.util.Objects;
/**
* Async client implementation for Deployment service.
* There are two ways to use async client: 1. Use AsyncHandler: using AsyncHandler, if the response
* to the call is an {@link java.io.InputStream}, like getObject Api in object storage service,
* developers need to process the stream in AsyncHandler, and not anywhere else, because the stream
* will be closed right after the AsyncHandler is invoked.
* 2. Use Java Future: using Java Future, developers need to close the stream after they are done
* with the Java Future.
* Accessing the result should be done in a mutually exclusive manner, either through the Future or
* the AsyncHandler, but not both. If the Future is used, the caller should pass in null as the
* AsyncHandler. If the AsyncHandler is used, it is still safe to use the Future to determine
* whether or not the request was completed via Future.isDone/isCancelled.
* Please refer to
* https://github.com/oracle/oci-java-sdk/blob/master/bmc-examples/src/main/java/ResteasyClientWithObjectStorageExample.java
*/
@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190501")
public class DeploymentAsyncClient extends com.oracle.bmc.http.internal.BaseAsyncClient
implements DeploymentAsync {
/** Service instance for Deployment. */
public static final com.oracle.bmc.Service SERVICE =
com.oracle.bmc.Services.serviceBuilder()
.serviceName("DEPLOYMENT")
.serviceEndpointPrefix("")
.serviceEndpointTemplate("https://apigateway.{region}.oci.{secondLevelDomain}")
.build();
private static final org.slf4j.Logger LOG =
org.slf4j.LoggerFactory.getLogger(DeploymentAsyncClient.class);
DeploymentAsyncClient(
com.oracle.bmc.common.ClientBuilderBase, ?> builder,
com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider
authenticationDetailsProvider) {
super(builder, authenticationDetailsProvider);
}
/**
* Create a builder for this client.
*
* @return builder
*/
public static Builder builder() {
return new Builder(SERVICE);
}
/**
* Builder class for this client. The "authenticationDetailsProvider" is required and must be
* passed to the {@link #build(AbstractAuthenticationDetailsProvider)} method.
*/
public static class Builder
extends com.oracle.bmc.common.RegionalClientBuilder {
private Builder(com.oracle.bmc.Service service) {
super(service);
final String packageName = "apigateway";
com.oracle.bmc.internal.Alloy.throwDisabledServiceExceptionIfAppropriate(packageName);
requestSignerFactory =
new com.oracle.bmc.http.signing.internal.DefaultRequestSignerFactory(
com.oracle.bmc.http.signing.SigningStrategy.STANDARD);
}
/**
* Build the client.
*
* @param authenticationDetailsProvider authentication details provider
* @return the client
*/
public DeploymentAsyncClient build(
@jakarta.annotation.Nonnull
com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider
authenticationDetailsProvider) {
return new DeploymentAsyncClient(this, authenticationDetailsProvider);
}
}
@Override
public void setRegion(com.oracle.bmc.Region region) {
super.setRegion(region);
}
@Override
public void setRegion(String regionId) {
super.setRegion(regionId);
}
@Override
public java.util.concurrent.Future
changeDeploymentCompartment(
ChangeDeploymentCompartmentRequest request,
final com.oracle.bmc.responses.AsyncHandler<
ChangeDeploymentCompartmentRequest,
ChangeDeploymentCompartmentResponse>
handler) {
Validate.notBlank(request.getDeploymentId(), "deploymentId must not be blank");
Objects.requireNonNull(
request.getChangeDeploymentCompartmentDetails(),
"changeDeploymentCompartmentDetails is required");
return clientCall(request, ChangeDeploymentCompartmentResponse::builder)
.logger(LOG, "changeDeploymentCompartment")
.serviceDetails(
"Deployment",
"ChangeDeploymentCompartment",
"https://docs.oracle.com/iaas/api/#/en/api-gateway/20190501/Deployment/ChangeDeploymentCompartment")
.method(com.oracle.bmc.http.client.Method.POST)
.requestBuilder(ChangeDeploymentCompartmentRequest::builder)
.basePath("/20190501")
.appendPathParam("deployments")
.appendPathParam(request.getDeploymentId())
.appendPathParam("actions")
.appendPathParam("changeCompartment")
.accept("application/json")
.appendHeader("opc-retry-token", request.getOpcRetryToken())
.appendHeader("if-match", request.getIfMatch())
.appendHeader("opc-request-id", request.getOpcRequestId())
.hasBody()
.handleResponseHeaderString(
"opc-work-request-id",
ChangeDeploymentCompartmentResponse.Builder::opcWorkRequestId)
.handleResponseHeaderString(
"opc-request-id", ChangeDeploymentCompartmentResponse.Builder::opcRequestId)
.callAsync(handler);
}
@Override
public java.util.concurrent.Future createDeployment(
CreateDeploymentRequest request,
final com.oracle.bmc.responses.AsyncHandler<
CreateDeploymentRequest, CreateDeploymentResponse>
handler) {
Objects.requireNonNull(
request.getCreateDeploymentDetails(), "createDeploymentDetails is required");
return clientCall(request, CreateDeploymentResponse::builder)
.logger(LOG, "createDeployment")
.serviceDetails("Deployment", "CreateDeployment", "")
.method(com.oracle.bmc.http.client.Method.POST)
.requestBuilder(CreateDeploymentRequest::builder)
.basePath("/20190501")
.appendPathParam("deployments")
.accept("application/json")
.appendHeader("opc-retry-token", request.getOpcRetryToken())
.appendHeader("opc-request-id", request.getOpcRequestId())
.hasBody()
.handleBody(
com.oracle.bmc.apigateway.model.Deployment.class,
CreateDeploymentResponse.Builder::deployment)
.handleResponseHeaderString("etag", CreateDeploymentResponse.Builder::etag)
.handleResponseHeaderString(
"opc-work-request-id", CreateDeploymentResponse.Builder::opcWorkRequestId)
.handleResponseHeaderString(
"opc-request-id", CreateDeploymentResponse.Builder::opcRequestId)
.handleResponseHeaderString("location", CreateDeploymentResponse.Builder::location)
.callAsync(handler);
}
@Override
public java.util.concurrent.Future deleteDeployment(
DeleteDeploymentRequest request,
final com.oracle.bmc.responses.AsyncHandler<
DeleteDeploymentRequest, DeleteDeploymentResponse>
handler) {
Validate.notBlank(request.getDeploymentId(), "deploymentId must not be blank");
return clientCall(request, DeleteDeploymentResponse::builder)
.logger(LOG, "deleteDeployment")
.serviceDetails(
"Deployment",
"DeleteDeployment",
"https://docs.oracle.com/iaas/api/#/en/api-gateway/20190501/Deployment/DeleteDeployment")
.method(com.oracle.bmc.http.client.Method.DELETE)
.requestBuilder(DeleteDeploymentRequest::builder)
.basePath("/20190501")
.appendPathParam("deployments")
.appendPathParam(request.getDeploymentId())
.accept("application/json")
.appendHeader("if-match", request.getIfMatch())
.appendHeader("opc-request-id", request.getOpcRequestId())
.handleResponseHeaderString(
"opc-work-request-id", DeleteDeploymentResponse.Builder::opcWorkRequestId)
.handleResponseHeaderString(
"opc-request-id", DeleteDeploymentResponse.Builder::opcRequestId)
.callAsync(handler);
}
@Override
public java.util.concurrent.Future getDeployment(
GetDeploymentRequest request,
final com.oracle.bmc.responses.AsyncHandler
handler) {
Validate.notBlank(request.getDeploymentId(), "deploymentId must not be blank");
return clientCall(request, GetDeploymentResponse::builder)
.logger(LOG, "getDeployment")
.serviceDetails(
"Deployment",
"GetDeployment",
"https://docs.oracle.com/iaas/api/#/en/api-gateway/20190501/Deployment/GetDeployment")
.method(com.oracle.bmc.http.client.Method.GET)
.requestBuilder(GetDeploymentRequest::builder)
.basePath("/20190501")
.appendPathParam("deployments")
.appendPathParam(request.getDeploymentId())
.accept("application/json")
.appendHeader("opc-request-id", request.getOpcRequestId())
.handleBody(
com.oracle.bmc.apigateway.model.Deployment.class,
GetDeploymentResponse.Builder::deployment)
.handleResponseHeaderString("etag", GetDeploymentResponse.Builder::etag)
.handleResponseHeaderString(
"opc-request-id", GetDeploymentResponse.Builder::opcRequestId)
.callAsync(handler);
}
@Override
public java.util.concurrent.Future listDeployments(
ListDeploymentsRequest request,
final com.oracle.bmc.responses.AsyncHandler<
ListDeploymentsRequest, ListDeploymentsResponse>
handler) {
Objects.requireNonNull(request.getCompartmentId(), "compartmentId is required");
return clientCall(request, ListDeploymentsResponse::builder)
.logger(LOG, "listDeployments")
.serviceDetails(
"Deployment",
"ListDeployments",
"https://docs.oracle.com/iaas/api/#/en/api-gateway/20190501/DeploymentSummary/ListDeployments")
.method(com.oracle.bmc.http.client.Method.GET)
.requestBuilder(ListDeploymentsRequest::builder)
.basePath("/20190501")
.appendPathParam("deployments")
.appendQueryParam("compartmentId", request.getCompartmentId())
.appendQueryParam("gatewayId", request.getGatewayId())
.appendQueryParam("displayName", request.getDisplayName())
.appendEnumQueryParam("lifecycleState", request.getLifecycleState())
.appendQueryParam("limit", request.getLimit())
.appendQueryParam("page", request.getPage())
.appendEnumQueryParam("sortOrder", request.getSortOrder())
.appendEnumQueryParam("sortBy", request.getSortBy())
.accept("application/json")
.appendHeader("opc-request-id", request.getOpcRequestId())
.handleBody(
com.oracle.bmc.apigateway.model.DeploymentCollection.class,
ListDeploymentsResponse.Builder::deploymentCollection)
.handleResponseHeaderString(
"opc-request-id", ListDeploymentsResponse.Builder::opcRequestId)
.handleResponseHeaderString(
"opc-next-page", ListDeploymentsResponse.Builder::opcNextPage)
.handleResponseHeaderString(
"opc-prev-page", ListDeploymentsResponse.Builder::opcPrevPage)
.callAsync(handler);
}
@Override
public java.util.concurrent.Future updateDeployment(
UpdateDeploymentRequest request,
final com.oracle.bmc.responses.AsyncHandler<
UpdateDeploymentRequest, UpdateDeploymentResponse>
handler) {
Validate.notBlank(request.getDeploymentId(), "deploymentId must not be blank");
Objects.requireNonNull(
request.getUpdateDeploymentDetails(), "updateDeploymentDetails is required");
return clientCall(request, UpdateDeploymentResponse::builder)
.logger(LOG, "updateDeployment")
.serviceDetails(
"Deployment",
"UpdateDeployment",
"https://docs.oracle.com/iaas/api/#/en/api-gateway/20190501/Deployment/UpdateDeployment")
.method(com.oracle.bmc.http.client.Method.PUT)
.requestBuilder(UpdateDeploymentRequest::builder)
.basePath("/20190501")
.appendPathParam("deployments")
.appendPathParam(request.getDeploymentId())
.accept("application/json")
.appendHeader("if-match", request.getIfMatch())
.appendHeader("opc-request-id", request.getOpcRequestId())
.hasBody()
.handleResponseHeaderString(
"opc-work-request-id", UpdateDeploymentResponse.Builder::opcWorkRequestId)
.handleResponseHeaderString(
"opc-request-id", UpdateDeploymentResponse.Builder::opcRequestId)
.callAsync(handler);
}
/**
* Create a new client instance.
*
* @param authenticationDetailsProvider The authentication details (see {@link Builder#build})
* @deprecated Use the {@link #builder() builder} instead.
*/
@Deprecated
public DeploymentAsyncClient(
com.oracle.bmc.auth.BasicAuthenticationDetailsProvider authenticationDetailsProvider) {
this(builder(), authenticationDetailsProvider);
}
/**
* Create a new client instance.
*
* @param authenticationDetailsProvider The authentication details (see {@link Builder#build})
* @param configuration {@link Builder#configuration}
* @deprecated Use the {@link #builder() builder} instead.
*/
@Deprecated
public DeploymentAsyncClient(
com.oracle.bmc.auth.BasicAuthenticationDetailsProvider authenticationDetailsProvider,
com.oracle.bmc.ClientConfiguration configuration) {
this(builder().configuration(configuration), authenticationDetailsProvider);
}
/**
* Create a new client instance.
*
* @param authenticationDetailsProvider The authentication details (see {@link Builder#build})
* @param configuration {@link Builder#configuration}
* @param clientConfigurator {@link Builder#clientConfigurator}
* @deprecated Use the {@link #builder() builder} instead.
*/
@Deprecated
public DeploymentAsyncClient(
com.oracle.bmc.auth.BasicAuthenticationDetailsProvider authenticationDetailsProvider,
com.oracle.bmc.ClientConfiguration configuration,
com.oracle.bmc.http.ClientConfigurator clientConfigurator) {
this(
builder().configuration(configuration).clientConfigurator(clientConfigurator),
authenticationDetailsProvider);
}
/**
* Create a new client instance.
*
* @param authenticationDetailsProvider The authentication details (see {@link Builder#build})
* @param configuration {@link Builder#configuration}
* @param clientConfigurator {@link Builder#clientConfigurator}
* @param defaultRequestSignerFactory {@link Builder#requestSignerFactory}
* @deprecated Use the {@link #builder() builder} instead.
*/
@Deprecated
public DeploymentAsyncClient(
com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider,
com.oracle.bmc.ClientConfiguration configuration,
com.oracle.bmc.http.ClientConfigurator clientConfigurator,
com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory) {
this(
builder()
.configuration(configuration)
.clientConfigurator(clientConfigurator)
.requestSignerFactory(defaultRequestSignerFactory),
authenticationDetailsProvider);
}
/**
* Create a new client instance.
*
* @param authenticationDetailsProvider The authentication details (see {@link Builder#build})
* @param configuration {@link Builder#configuration}
* @param clientConfigurator {@link Builder#clientConfigurator}
* @param defaultRequestSignerFactory {@link Builder#requestSignerFactory}
* @param additionalClientConfigurators {@link Builder#additionalClientConfigurators}
* @deprecated Use the {@link #builder() builder} instead.
*/
@Deprecated
public DeploymentAsyncClient(
com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider,
com.oracle.bmc.ClientConfiguration configuration,
com.oracle.bmc.http.ClientConfigurator clientConfigurator,
com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory,
java.util.List additionalClientConfigurators) {
this(
builder()
.configuration(configuration)
.clientConfigurator(clientConfigurator)
.requestSignerFactory(defaultRequestSignerFactory)
.additionalClientConfigurators(additionalClientConfigurators),
authenticationDetailsProvider);
}
/**
* Create a new client instance.
*
* @param authenticationDetailsProvider The authentication details (see {@link Builder#build})
* @param configuration {@link Builder#configuration}
* @param clientConfigurator {@link Builder#clientConfigurator}
* @param defaultRequestSignerFactory {@link Builder#requestSignerFactory}
* @param additionalClientConfigurators {@link Builder#additionalClientConfigurators}
* @param endpoint {@link Builder#endpoint}
* @deprecated Use the {@link #builder() builder} instead.
*/
@Deprecated
public DeploymentAsyncClient(
com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider,
com.oracle.bmc.ClientConfiguration configuration,
com.oracle.bmc.http.ClientConfigurator clientConfigurator,
com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory,
java.util.List additionalClientConfigurators,
String endpoint) {
this(
builder()
.configuration(configuration)
.clientConfigurator(clientConfigurator)
.requestSignerFactory(defaultRequestSignerFactory)
.additionalClientConfigurators(additionalClientConfigurators)
.endpoint(endpoint),
authenticationDetailsProvider);
}
/**
* Create a new client instance.
*
* @param authenticationDetailsProvider The authentication details (see {@link Builder#build})
* @param configuration {@link Builder#configuration}
* @param clientConfigurator {@link Builder#clientConfigurator}
* @param defaultRequestSignerFactory {@link Builder#requestSignerFactory}
* @param additionalClientConfigurators {@link Builder#additionalClientConfigurators}
* @param endpoint {@link Builder#endpoint}
* @param signingStrategyRequestSignerFactories {@link
* Builder#signingStrategyRequestSignerFactories}
* @deprecated Use the {@link #builder() builder} instead.
*/
@Deprecated
public DeploymentAsyncClient(
com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider,
com.oracle.bmc.ClientConfiguration configuration,
com.oracle.bmc.http.ClientConfigurator clientConfigurator,
com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory,
java.util.Map<
com.oracle.bmc.http.signing.SigningStrategy,
com.oracle.bmc.http.signing.RequestSignerFactory>
signingStrategyRequestSignerFactories,
java.util.List additionalClientConfigurators,
String endpoint) {
this(
builder()
.configuration(configuration)
.clientConfigurator(clientConfigurator)
.requestSignerFactory(defaultRequestSignerFactory)
.additionalClientConfigurators(additionalClientConfigurators)
.endpoint(endpoint)
.signingStrategyRequestSignerFactories(
signingStrategyRequestSignerFactories),
authenticationDetailsProvider);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy