TargetHttpProxiesStub.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.compute.v1.stub;
import static com.google.cloud.compute.v1.TargetHttpProxiesClient.AggregatedListPagedResponse;
import static com.google.cloud.compute.v1.TargetHttpProxiesClient.ListPagedResponse;
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.compute.v1.AggregatedListTargetHttpProxiesRequest;
import com.google.cloud.compute.v1.DeleteTargetHttpProxyRequest;
import com.google.cloud.compute.v1.GetTargetHttpProxyRequest;
import com.google.cloud.compute.v1.InsertTargetHttpProxyRequest;
import com.google.cloud.compute.v1.ListTargetHttpProxiesRequest;
import com.google.cloud.compute.v1.Operation;
import com.google.cloud.compute.v1.PatchTargetHttpProxyRequest;
import com.google.cloud.compute.v1.SetUrlMapTargetHttpProxyRequest;
import com.google.cloud.compute.v1.TargetHttpProxy;
import com.google.cloud.compute.v1.TargetHttpProxyAggregatedList;
import com.google.cloud.compute.v1.TargetHttpProxyList;
import javax.annotation.Generated;
// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* Base stub class for the TargetHttpProxies service API.
*
* <p>This class is for advanced usage and reflects the underlying API directly.
*/
@Generated("by gapic-generator-java")
public abstract class TargetHttpProxiesStub implements BackgroundResource {
public UnaryCallable<AggregatedListTargetHttpProxiesRequest, AggregatedListPagedResponse>
aggregatedListPagedCallable() {
throw new UnsupportedOperationException("Not implemented: aggregatedListPagedCallable()");
}
public UnaryCallable<AggregatedListTargetHttpProxiesRequest, TargetHttpProxyAggregatedList>
aggregatedListCallable() {
throw new UnsupportedOperationException("Not implemented: aggregatedListCallable()");
}
public OperationCallable<DeleteTargetHttpProxyRequest, Operation, Operation>
deleteOperationCallable() {
throw new UnsupportedOperationException("Not implemented: deleteOperationCallable()");
}
public UnaryCallable<DeleteTargetHttpProxyRequest, Operation> deleteCallable() {
throw new UnsupportedOperationException("Not implemented: deleteCallable()");
}
public UnaryCallable<GetTargetHttpProxyRequest, TargetHttpProxy> getCallable() {
throw new UnsupportedOperationException("Not implemented: getCallable()");
}
public OperationCallable<InsertTargetHttpProxyRequest, Operation, Operation>
insertOperationCallable() {
throw new UnsupportedOperationException("Not implemented: insertOperationCallable()");
}
public UnaryCallable<InsertTargetHttpProxyRequest, Operation> insertCallable() {
throw new UnsupportedOperationException("Not implemented: insertCallable()");
}
public UnaryCallable<ListTargetHttpProxiesRequest, ListPagedResponse> listPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listPagedCallable()");
}
public UnaryCallable<ListTargetHttpProxiesRequest, TargetHttpProxyList> listCallable() {
throw new UnsupportedOperationException("Not implemented: listCallable()");
}
public OperationCallable<PatchTargetHttpProxyRequest, Operation, Operation>
patchOperationCallable() {
throw new UnsupportedOperationException("Not implemented: patchOperationCallable()");
}
public UnaryCallable<PatchTargetHttpProxyRequest, Operation> patchCallable() {
throw new UnsupportedOperationException("Not implemented: patchCallable()");
}
public OperationCallable<SetUrlMapTargetHttpProxyRequest, Operation, Operation>
setUrlMapOperationCallable() {
throw new UnsupportedOperationException("Not implemented: setUrlMapOperationCallable()");
}
public UnaryCallable<SetUrlMapTargetHttpProxyRequest, Operation> setUrlMapCallable() {
throw new UnsupportedOperationException("Not implemented: setUrlMapCallable()");
}
@Override
public abstract void close();
}