HttpJsonEnvironmentsStub.java
/*
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.cloud.orchestration.airflow.service.v1.stub;
import static com.google.cloud.orchestration.airflow.service.v1.EnvironmentsClient.ListEnvironmentsPagedResponse;
import com.google.api.core.BetaApi;
import com.google.api.core.InternalApi;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.core.BackgroundResourceAggregation;
import com.google.api.gax.httpjson.ApiMethodDescriptor;
import com.google.api.gax.httpjson.HttpJsonCallSettings;
import com.google.api.gax.httpjson.HttpJsonOperationSnapshot;
import com.google.api.gax.httpjson.HttpJsonStubCallableFactory;
import com.google.api.gax.httpjson.ProtoMessageRequestFormatter;
import com.google.api.gax.httpjson.ProtoMessageResponseParser;
import com.google.api.gax.httpjson.ProtoRestSerializer;
import com.google.api.gax.httpjson.longrunning.stub.HttpJsonOperationsStub;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.OperationCallable;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.orchestration.airflow.service.v1.CreateEnvironmentRequest;
import com.google.cloud.orchestration.airflow.service.v1.DeleteEnvironmentRequest;
import com.google.cloud.orchestration.airflow.service.v1.Environment;
import com.google.cloud.orchestration.airflow.service.v1.GetEnvironmentRequest;
import com.google.cloud.orchestration.airflow.service.v1.ListEnvironmentsRequest;
import com.google.cloud.orchestration.airflow.service.v1.ListEnvironmentsResponse;
import com.google.cloud.orchestration.airflow.service.v1.OperationMetadata;
import com.google.cloud.orchestration.airflow.service.v1.UpdateEnvironmentRequest;
import com.google.longrunning.Operation;
import com.google.protobuf.Empty;
import com.google.protobuf.TypeRegistry;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import javax.annotation.Generated;
// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* REST stub implementation for the Environments service API.
*
* <p>This class is for advanced usage and reflects the underlying API directly.
*/
@Generated("by gapic-generator-java")
@BetaApi
public class HttpJsonEnvironmentsStub extends EnvironmentsStub {
private static final TypeRegistry typeRegistry =
TypeRegistry.newBuilder()
.add(Environment.getDescriptor())
.add(Empty.getDescriptor())
.add(OperationMetadata.getDescriptor())
.build();
private static final ApiMethodDescriptor<CreateEnvironmentRequest, Operation>
createEnvironmentMethodDescriptor =
ApiMethodDescriptor.<CreateEnvironmentRequest, Operation>newBuilder()
.setFullMethodName(
"google.cloud.orchestration.airflow.service.v1.Environments/CreateEnvironment")
.setHttpMethod("POST")
.setType(ApiMethodDescriptor.MethodType.UNARY)
.setRequestFormatter(
ProtoMessageRequestFormatter.<CreateEnvironmentRequest>newBuilder()
.setPath(
"/v1/{parent=projects/*/locations/*}/environments",
request -> {
Map<String, String> fields = new HashMap<>();
ProtoRestSerializer<CreateEnvironmentRequest> serializer =
ProtoRestSerializer.create();
serializer.putPathParam(fields, "parent", request.getParent());
return fields;
})
.setQueryParamsExtractor(
request -> {
Map<String, List<String>> fields = new HashMap<>();
ProtoRestSerializer<CreateEnvironmentRequest> serializer =
ProtoRestSerializer.create();
return fields;
})
.setRequestBodyExtractor(
request ->
ProtoRestSerializer.create()
.toBody("environment", request.getEnvironment(), false))
.build())
.setResponseParser(
ProtoMessageResponseParser.<Operation>newBuilder()
.setDefaultInstance(Operation.getDefaultInstance())
.setDefaultTypeRegistry(typeRegistry)
.build())
.setOperationSnapshotFactory(
(CreateEnvironmentRequest request, Operation response) ->
HttpJsonOperationSnapshot.create(response))
.build();
private static final ApiMethodDescriptor<GetEnvironmentRequest, Environment>
getEnvironmentMethodDescriptor =
ApiMethodDescriptor.<GetEnvironmentRequest, Environment>newBuilder()
.setFullMethodName(
"google.cloud.orchestration.airflow.service.v1.Environments/GetEnvironment")
.setHttpMethod("GET")
.setType(ApiMethodDescriptor.MethodType.UNARY)
.setRequestFormatter(
ProtoMessageRequestFormatter.<GetEnvironmentRequest>newBuilder()
.setPath(
"/v1/{name=projects/*/locations/*/environments/*}",
request -> {
Map<String, String> fields = new HashMap<>();
ProtoRestSerializer<GetEnvironmentRequest> serializer =
ProtoRestSerializer.create();
serializer.putPathParam(fields, "name", request.getName());
return fields;
})
.setQueryParamsExtractor(
request -> {
Map<String, List<String>> fields = new HashMap<>();
ProtoRestSerializer<GetEnvironmentRequest> serializer =
ProtoRestSerializer.create();
return fields;
})
.setRequestBodyExtractor(request -> null)
.build())
.setResponseParser(
ProtoMessageResponseParser.<Environment>newBuilder()
.setDefaultInstance(Environment.getDefaultInstance())
.setDefaultTypeRegistry(typeRegistry)
.build())
.build();
private static final ApiMethodDescriptor<ListEnvironmentsRequest, ListEnvironmentsResponse>
listEnvironmentsMethodDescriptor =
ApiMethodDescriptor.<ListEnvironmentsRequest, ListEnvironmentsResponse>newBuilder()
.setFullMethodName(
"google.cloud.orchestration.airflow.service.v1.Environments/ListEnvironments")
.setHttpMethod("GET")
.setType(ApiMethodDescriptor.MethodType.UNARY)
.setRequestFormatter(
ProtoMessageRequestFormatter.<ListEnvironmentsRequest>newBuilder()
.setPath(
"/v1/{parent=projects/*/locations/*}/environments",
request -> {
Map<String, String> fields = new HashMap<>();
ProtoRestSerializer<ListEnvironmentsRequest> serializer =
ProtoRestSerializer.create();
serializer.putPathParam(fields, "parent", request.getParent());
return fields;
})
.setQueryParamsExtractor(
request -> {
Map<String, List<String>> fields = new HashMap<>();
ProtoRestSerializer<ListEnvironmentsRequest> serializer =
ProtoRestSerializer.create();
serializer.putQueryParam(fields, "pageSize", request.getPageSize());
serializer.putQueryParam(fields, "pageToken", request.getPageToken());
return fields;
})
.setRequestBodyExtractor(request -> null)
.build())
.setResponseParser(
ProtoMessageResponseParser.<ListEnvironmentsResponse>newBuilder()
.setDefaultInstance(ListEnvironmentsResponse.getDefaultInstance())
.setDefaultTypeRegistry(typeRegistry)
.build())
.build();
private static final ApiMethodDescriptor<UpdateEnvironmentRequest, Operation>
updateEnvironmentMethodDescriptor =
ApiMethodDescriptor.<UpdateEnvironmentRequest, Operation>newBuilder()
.setFullMethodName(
"google.cloud.orchestration.airflow.service.v1.Environments/UpdateEnvironment")
.setHttpMethod("PATCH")
.setType(ApiMethodDescriptor.MethodType.UNARY)
.setRequestFormatter(
ProtoMessageRequestFormatter.<UpdateEnvironmentRequest>newBuilder()
.setPath(
"/v1/{name=projects/*/locations/*/environments/*}",
request -> {
Map<String, String> fields = new HashMap<>();
ProtoRestSerializer<UpdateEnvironmentRequest> serializer =
ProtoRestSerializer.create();
serializer.putPathParam(fields, "name", request.getName());
return fields;
})
.setQueryParamsExtractor(
request -> {
Map<String, List<String>> fields = new HashMap<>();
ProtoRestSerializer<UpdateEnvironmentRequest> serializer =
ProtoRestSerializer.create();
serializer.putQueryParam(fields, "updateMask", request.getUpdateMask());
return fields;
})
.setRequestBodyExtractor(
request ->
ProtoRestSerializer.create()
.toBody("environment", request.getEnvironment(), false))
.build())
.setResponseParser(
ProtoMessageResponseParser.<Operation>newBuilder()
.setDefaultInstance(Operation.getDefaultInstance())
.setDefaultTypeRegistry(typeRegistry)
.build())
.setOperationSnapshotFactory(
(UpdateEnvironmentRequest request, Operation response) ->
HttpJsonOperationSnapshot.create(response))
.build();
private static final ApiMethodDescriptor<DeleteEnvironmentRequest, Operation>
deleteEnvironmentMethodDescriptor =
ApiMethodDescriptor.<DeleteEnvironmentRequest, Operation>newBuilder()
.setFullMethodName(
"google.cloud.orchestration.airflow.service.v1.Environments/DeleteEnvironment")
.setHttpMethod("DELETE")
.setType(ApiMethodDescriptor.MethodType.UNARY)
.setRequestFormatter(
ProtoMessageRequestFormatter.<DeleteEnvironmentRequest>newBuilder()
.setPath(
"/v1/{name=projects/*/locations/*/environments/*}",
request -> {
Map<String, String> fields = new HashMap<>();
ProtoRestSerializer<DeleteEnvironmentRequest> serializer =
ProtoRestSerializer.create();
serializer.putPathParam(fields, "name", request.getName());
return fields;
})
.setQueryParamsExtractor(
request -> {
Map<String, List<String>> fields = new HashMap<>();
ProtoRestSerializer<DeleteEnvironmentRequest> serializer =
ProtoRestSerializer.create();
return fields;
})
.setRequestBodyExtractor(request -> null)
.build())
.setResponseParser(
ProtoMessageResponseParser.<Operation>newBuilder()
.setDefaultInstance(Operation.getDefaultInstance())
.setDefaultTypeRegistry(typeRegistry)
.build())
.setOperationSnapshotFactory(
(DeleteEnvironmentRequest request, Operation response) ->
HttpJsonOperationSnapshot.create(response))
.build();
private final UnaryCallable<CreateEnvironmentRequest, Operation> createEnvironmentCallable;
private final OperationCallable<CreateEnvironmentRequest, Environment, OperationMetadata>
createEnvironmentOperationCallable;
private final UnaryCallable<GetEnvironmentRequest, Environment> getEnvironmentCallable;
private final UnaryCallable<ListEnvironmentsRequest, ListEnvironmentsResponse>
listEnvironmentsCallable;
private final UnaryCallable<ListEnvironmentsRequest, ListEnvironmentsPagedResponse>
listEnvironmentsPagedCallable;
private final UnaryCallable<UpdateEnvironmentRequest, Operation> updateEnvironmentCallable;
private final OperationCallable<UpdateEnvironmentRequest, Environment, OperationMetadata>
updateEnvironmentOperationCallable;
private final UnaryCallable<DeleteEnvironmentRequest, Operation> deleteEnvironmentCallable;
private final OperationCallable<DeleteEnvironmentRequest, Empty, OperationMetadata>
deleteEnvironmentOperationCallable;
private final BackgroundResource backgroundResources;
private final HttpJsonOperationsStub httpJsonOperationsStub;
private final HttpJsonStubCallableFactory callableFactory;
public static final HttpJsonEnvironmentsStub create(EnvironmentsStubSettings settings)
throws IOException {
return new HttpJsonEnvironmentsStub(settings, ClientContext.create(settings));
}
public static final HttpJsonEnvironmentsStub create(ClientContext clientContext)
throws IOException {
return new HttpJsonEnvironmentsStub(
EnvironmentsStubSettings.newHttpJsonBuilder().build(), clientContext);
}
public static final HttpJsonEnvironmentsStub create(
ClientContext clientContext, HttpJsonStubCallableFactory callableFactory) throws IOException {
return new HttpJsonEnvironmentsStub(
EnvironmentsStubSettings.newHttpJsonBuilder().build(), clientContext, callableFactory);
}
/**
* Constructs an instance of HttpJsonEnvironmentsStub, using the given settings. This is protected
* so that it is easy to make a subclass, but otherwise, the static factory methods should be
* preferred.
*/
protected HttpJsonEnvironmentsStub(EnvironmentsStubSettings settings, ClientContext clientContext)
throws IOException {
this(settings, clientContext, new HttpJsonEnvironmentsCallableFactory());
}
/**
* Constructs an instance of HttpJsonEnvironmentsStub, using the given settings. This is protected
* so that it is easy to make a subclass, but otherwise, the static factory methods should be
* preferred.
*/
protected HttpJsonEnvironmentsStub(
EnvironmentsStubSettings settings,
ClientContext clientContext,
HttpJsonStubCallableFactory callableFactory)
throws IOException {
this.callableFactory = callableFactory;
this.httpJsonOperationsStub =
HttpJsonOperationsStub.create(clientContext, callableFactory, typeRegistry);
HttpJsonCallSettings<CreateEnvironmentRequest, Operation> createEnvironmentTransportSettings =
HttpJsonCallSettings.<CreateEnvironmentRequest, Operation>newBuilder()
.setMethodDescriptor(createEnvironmentMethodDescriptor)
.setTypeRegistry(typeRegistry)
.build();
HttpJsonCallSettings<GetEnvironmentRequest, Environment> getEnvironmentTransportSettings =
HttpJsonCallSettings.<GetEnvironmentRequest, Environment>newBuilder()
.setMethodDescriptor(getEnvironmentMethodDescriptor)
.setTypeRegistry(typeRegistry)
.build();
HttpJsonCallSettings<ListEnvironmentsRequest, ListEnvironmentsResponse>
listEnvironmentsTransportSettings =
HttpJsonCallSettings.<ListEnvironmentsRequest, ListEnvironmentsResponse>newBuilder()
.setMethodDescriptor(listEnvironmentsMethodDescriptor)
.setTypeRegistry(typeRegistry)
.build();
HttpJsonCallSettings<UpdateEnvironmentRequest, Operation> updateEnvironmentTransportSettings =
HttpJsonCallSettings.<UpdateEnvironmentRequest, Operation>newBuilder()
.setMethodDescriptor(updateEnvironmentMethodDescriptor)
.setTypeRegistry(typeRegistry)
.build();
HttpJsonCallSettings<DeleteEnvironmentRequest, Operation> deleteEnvironmentTransportSettings =
HttpJsonCallSettings.<DeleteEnvironmentRequest, Operation>newBuilder()
.setMethodDescriptor(deleteEnvironmentMethodDescriptor)
.setTypeRegistry(typeRegistry)
.build();
this.createEnvironmentCallable =
callableFactory.createUnaryCallable(
createEnvironmentTransportSettings,
settings.createEnvironmentSettings(),
clientContext);
this.createEnvironmentOperationCallable =
callableFactory.createOperationCallable(
createEnvironmentTransportSettings,
settings.createEnvironmentOperationSettings(),
clientContext,
httpJsonOperationsStub);
this.getEnvironmentCallable =
callableFactory.createUnaryCallable(
getEnvironmentTransportSettings, settings.getEnvironmentSettings(), clientContext);
this.listEnvironmentsCallable =
callableFactory.createUnaryCallable(
listEnvironmentsTransportSettings, settings.listEnvironmentsSettings(), clientContext);
this.listEnvironmentsPagedCallable =
callableFactory.createPagedCallable(
listEnvironmentsTransportSettings, settings.listEnvironmentsSettings(), clientContext);
this.updateEnvironmentCallable =
callableFactory.createUnaryCallable(
updateEnvironmentTransportSettings,
settings.updateEnvironmentSettings(),
clientContext);
this.updateEnvironmentOperationCallable =
callableFactory.createOperationCallable(
updateEnvironmentTransportSettings,
settings.updateEnvironmentOperationSettings(),
clientContext,
httpJsonOperationsStub);
this.deleteEnvironmentCallable =
callableFactory.createUnaryCallable(
deleteEnvironmentTransportSettings,
settings.deleteEnvironmentSettings(),
clientContext);
this.deleteEnvironmentOperationCallable =
callableFactory.createOperationCallable(
deleteEnvironmentTransportSettings,
settings.deleteEnvironmentOperationSettings(),
clientContext,
httpJsonOperationsStub);
this.backgroundResources =
new BackgroundResourceAggregation(clientContext.getBackgroundResources());
}
@InternalApi
public static List<ApiMethodDescriptor> getMethodDescriptors() {
List<ApiMethodDescriptor> methodDescriptors = new ArrayList<>();
methodDescriptors.add(createEnvironmentMethodDescriptor);
methodDescriptors.add(getEnvironmentMethodDescriptor);
methodDescriptors.add(listEnvironmentsMethodDescriptor);
methodDescriptors.add(updateEnvironmentMethodDescriptor);
methodDescriptors.add(deleteEnvironmentMethodDescriptor);
return methodDescriptors;
}
public HttpJsonOperationsStub getHttpJsonOperationsStub() {
return httpJsonOperationsStub;
}
@Override
public UnaryCallable<CreateEnvironmentRequest, Operation> createEnvironmentCallable() {
return createEnvironmentCallable;
}
@Override
public OperationCallable<CreateEnvironmentRequest, Environment, OperationMetadata>
createEnvironmentOperationCallable() {
return createEnvironmentOperationCallable;
}
@Override
public UnaryCallable<GetEnvironmentRequest, Environment> getEnvironmentCallable() {
return getEnvironmentCallable;
}
@Override
public UnaryCallable<ListEnvironmentsRequest, ListEnvironmentsResponse>
listEnvironmentsCallable() {
return listEnvironmentsCallable;
}
@Override
public UnaryCallable<ListEnvironmentsRequest, ListEnvironmentsPagedResponse>
listEnvironmentsPagedCallable() {
return listEnvironmentsPagedCallable;
}
@Override
public UnaryCallable<UpdateEnvironmentRequest, Operation> updateEnvironmentCallable() {
return updateEnvironmentCallable;
}
@Override
public OperationCallable<UpdateEnvironmentRequest, Environment, OperationMetadata>
updateEnvironmentOperationCallable() {
return updateEnvironmentOperationCallable;
}
@Override
public UnaryCallable<DeleteEnvironmentRequest, Operation> deleteEnvironmentCallable() {
return deleteEnvironmentCallable;
}
@Override
public OperationCallable<DeleteEnvironmentRequest, Empty, OperationMetadata>
deleteEnvironmentOperationCallable() {
return deleteEnvironmentOperationCallable;
}
@Override
public final void close() {
try {
backgroundResources.close();
} catch (RuntimeException e) {
throw e;
} catch (Exception e) {
throw new IllegalStateException("Failed to close resource", e);
}
}
@Override
public void shutdown() {
backgroundResources.shutdown();
}
@Override
public boolean isShutdown() {
return backgroundResources.isShutdown();
}
@Override
public boolean isTerminated() {
return backgroundResources.isTerminated();
}
@Override
public void shutdownNow() {
backgroundResources.shutdownNow();
}
@Override
public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException {
return backgroundResources.awaitTermination(duration, unit);
}
}