1 /* 2 * Copyright 2022 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.google.cloud.compute.v1.stub; 18 19 import static com.google.cloud.compute.v1.TargetTcpProxiesClient.AggregatedListPagedResponse; 20 import static com.google.cloud.compute.v1.TargetTcpProxiesClient.ListPagedResponse; 21 22 import com.google.api.gax.core.BackgroundResource; 23 import com.google.api.gax.rpc.OperationCallable; 24 import com.google.api.gax.rpc.UnaryCallable; 25 import com.google.cloud.compute.v1.AggregatedListTargetTcpProxiesRequest; 26 import com.google.cloud.compute.v1.DeleteTargetTcpProxyRequest; 27 import com.google.cloud.compute.v1.GetTargetTcpProxyRequest; 28 import com.google.cloud.compute.v1.InsertTargetTcpProxyRequest; 29 import com.google.cloud.compute.v1.ListTargetTcpProxiesRequest; 30 import com.google.cloud.compute.v1.Operation; 31 import com.google.cloud.compute.v1.SetBackendServiceTargetTcpProxyRequest; 32 import com.google.cloud.compute.v1.SetProxyHeaderTargetTcpProxyRequest; 33 import com.google.cloud.compute.v1.TargetTcpProxy; 34 import com.google.cloud.compute.v1.TargetTcpProxyAggregatedList; 35 import com.google.cloud.compute.v1.TargetTcpProxyList; 36 import javax.annotation.Generated; 37 38 // AUTO-GENERATED DOCUMENTATION AND CLASS. 39 /** 40 * Base stub class for the TargetTcpProxies service API. 41 * 42 * <p>This class is for advanced usage and reflects the underlying API directly. 43 */ 44 @Generated("by gapic-generator-java") 45 public abstract class TargetTcpProxiesStub implements BackgroundResource { 46 47 public UnaryCallable<AggregatedListTargetTcpProxiesRequest, AggregatedListPagedResponse> aggregatedListPagedCallable()48 aggregatedListPagedCallable() { 49 throw new UnsupportedOperationException("Not implemented: aggregatedListPagedCallable()"); 50 } 51 52 public UnaryCallable<AggregatedListTargetTcpProxiesRequest, TargetTcpProxyAggregatedList> aggregatedListCallable()53 aggregatedListCallable() { 54 throw new UnsupportedOperationException("Not implemented: aggregatedListCallable()"); 55 } 56 57 public OperationCallable<DeleteTargetTcpProxyRequest, Operation, Operation> deleteOperationCallable()58 deleteOperationCallable() { 59 throw new UnsupportedOperationException("Not implemented: deleteOperationCallable()"); 60 } 61 deleteCallable()62 public UnaryCallable<DeleteTargetTcpProxyRequest, Operation> deleteCallable() { 63 throw new UnsupportedOperationException("Not implemented: deleteCallable()"); 64 } 65 getCallable()66 public UnaryCallable<GetTargetTcpProxyRequest, TargetTcpProxy> getCallable() { 67 throw new UnsupportedOperationException("Not implemented: getCallable()"); 68 } 69 70 public OperationCallable<InsertTargetTcpProxyRequest, Operation, Operation> insertOperationCallable()71 insertOperationCallable() { 72 throw new UnsupportedOperationException("Not implemented: insertOperationCallable()"); 73 } 74 insertCallable()75 public UnaryCallable<InsertTargetTcpProxyRequest, Operation> insertCallable() { 76 throw new UnsupportedOperationException("Not implemented: insertCallable()"); 77 } 78 listPagedCallable()79 public UnaryCallable<ListTargetTcpProxiesRequest, ListPagedResponse> listPagedCallable() { 80 throw new UnsupportedOperationException("Not implemented: listPagedCallable()"); 81 } 82 listCallable()83 public UnaryCallable<ListTargetTcpProxiesRequest, TargetTcpProxyList> listCallable() { 84 throw new UnsupportedOperationException("Not implemented: listCallable()"); 85 } 86 87 public OperationCallable<SetBackendServiceTargetTcpProxyRequest, Operation, Operation> setBackendServiceOperationCallable()88 setBackendServiceOperationCallable() { 89 throw new UnsupportedOperationException( 90 "Not implemented: setBackendServiceOperationCallable()"); 91 } 92 93 public UnaryCallable<SetBackendServiceTargetTcpProxyRequest, Operation> setBackendServiceCallable()94 setBackendServiceCallable() { 95 throw new UnsupportedOperationException("Not implemented: setBackendServiceCallable()"); 96 } 97 98 public OperationCallable<SetProxyHeaderTargetTcpProxyRequest, Operation, Operation> setProxyHeaderOperationCallable()99 setProxyHeaderOperationCallable() { 100 throw new UnsupportedOperationException("Not implemented: setProxyHeaderOperationCallable()"); 101 } 102 setProxyHeaderCallable()103 public UnaryCallable<SetProxyHeaderTargetTcpProxyRequest, Operation> setProxyHeaderCallable() { 104 throw new UnsupportedOperationException("Not implemented: setProxyHeaderCallable()"); 105 } 106 107 @Override close()108 public abstract void close(); 109 } 110