EnvironmentsStub.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.v1beta1.stub;
import static com.google.cloud.orchestration.airflow.service.v1beta1.EnvironmentsClient.ListEnvironmentsPagedResponse;
import com.google.api.core.BetaApi;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.rpc.OperationCallable;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.orchestration.airflow.service.v1beta1.CheckUpgradeRequest;
import com.google.cloud.orchestration.airflow.service.v1beta1.CheckUpgradeResponse;
import com.google.cloud.orchestration.airflow.service.v1beta1.CreateEnvironmentRequest;
import com.google.cloud.orchestration.airflow.service.v1beta1.DeleteEnvironmentRequest;
import com.google.cloud.orchestration.airflow.service.v1beta1.Environment;
import com.google.cloud.orchestration.airflow.service.v1beta1.GetEnvironmentRequest;
import com.google.cloud.orchestration.airflow.service.v1beta1.ListEnvironmentsRequest;
import com.google.cloud.orchestration.airflow.service.v1beta1.ListEnvironmentsResponse;
import com.google.cloud.orchestration.airflow.service.v1beta1.OperationMetadata;
import com.google.cloud.orchestration.airflow.service.v1beta1.RestartWebServerRequest;
import com.google.cloud.orchestration.airflow.service.v1beta1.UpdateEnvironmentRequest;
import com.google.longrunning.Operation;
import com.google.longrunning.stub.OperationsStub;
import com.google.protobuf.Empty;
import javax.annotation.Generated;
// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* Base stub class for the Environments service API.
*
* <p>This class is for advanced usage and reflects the underlying API directly.
*/
@BetaApi
@Generated("by gapic-generator-java")
public abstract class EnvironmentsStub implements BackgroundResource {
public OperationsStub getOperationsStub() {
return null;
}
public com.google.api.gax.httpjson.longrunning.stub.OperationsStub getHttpJsonOperationsStub() {
return null;
}
public OperationCallable<CreateEnvironmentRequest, Environment, OperationMetadata>
createEnvironmentOperationCallable() {
throw new UnsupportedOperationException(
"Not implemented: createEnvironmentOperationCallable()");
}
public UnaryCallable<CreateEnvironmentRequest, Operation> createEnvironmentCallable() {
throw new UnsupportedOperationException("Not implemented: createEnvironmentCallable()");
}
public UnaryCallable<GetEnvironmentRequest, Environment> getEnvironmentCallable() {
throw new UnsupportedOperationException("Not implemented: getEnvironmentCallable()");
}
public UnaryCallable<ListEnvironmentsRequest, ListEnvironmentsPagedResponse>
listEnvironmentsPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listEnvironmentsPagedCallable()");
}
public UnaryCallable<ListEnvironmentsRequest, ListEnvironmentsResponse>
listEnvironmentsCallable() {
throw new UnsupportedOperationException("Not implemented: listEnvironmentsCallable()");
}
public OperationCallable<UpdateEnvironmentRequest, Environment, OperationMetadata>
updateEnvironmentOperationCallable() {
throw new UnsupportedOperationException(
"Not implemented: updateEnvironmentOperationCallable()");
}
public UnaryCallable<UpdateEnvironmentRequest, Operation> updateEnvironmentCallable() {
throw new UnsupportedOperationException("Not implemented: updateEnvironmentCallable()");
}
public OperationCallable<DeleteEnvironmentRequest, Empty, OperationMetadata>
deleteEnvironmentOperationCallable() {
throw new UnsupportedOperationException(
"Not implemented: deleteEnvironmentOperationCallable()");
}
public UnaryCallable<DeleteEnvironmentRequest, Operation> deleteEnvironmentCallable() {
throw new UnsupportedOperationException("Not implemented: deleteEnvironmentCallable()");
}
public OperationCallable<RestartWebServerRequest, Environment, OperationMetadata>
restartWebServerOperationCallable() {
throw new UnsupportedOperationException("Not implemented: restartWebServerOperationCallable()");
}
public UnaryCallable<RestartWebServerRequest, Operation> restartWebServerCallable() {
throw new UnsupportedOperationException("Not implemented: restartWebServerCallable()");
}
public OperationCallable<CheckUpgradeRequest, CheckUpgradeResponse, OperationMetadata>
checkUpgradeOperationCallable() {
throw new UnsupportedOperationException("Not implemented: checkUpgradeOperationCallable()");
}
public UnaryCallable<CheckUpgradeRequest, Operation> checkUpgradeCallable() {
throw new UnsupportedOperationException("Not implemented: checkUpgradeCallable()");
}
@Override
public abstract void close();
}