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.TargetSslProxiesClient.ListPagedResponse; 20 21 import com.google.api.gax.core.BackgroundResource; 22 import com.google.api.gax.rpc.OperationCallable; 23 import com.google.api.gax.rpc.UnaryCallable; 24 import com.google.cloud.compute.v1.DeleteTargetSslProxyRequest; 25 import com.google.cloud.compute.v1.GetTargetSslProxyRequest; 26 import com.google.cloud.compute.v1.InsertTargetSslProxyRequest; 27 import com.google.cloud.compute.v1.ListTargetSslProxiesRequest; 28 import com.google.cloud.compute.v1.Operation; 29 import com.google.cloud.compute.v1.SetBackendServiceTargetSslProxyRequest; 30 import com.google.cloud.compute.v1.SetCertificateMapTargetSslProxyRequest; 31 import com.google.cloud.compute.v1.SetProxyHeaderTargetSslProxyRequest; 32 import com.google.cloud.compute.v1.SetSslCertificatesTargetSslProxyRequest; 33 import com.google.cloud.compute.v1.SetSslPolicyTargetSslProxyRequest; 34 import com.google.cloud.compute.v1.TargetSslProxy; 35 import com.google.cloud.compute.v1.TargetSslProxyList; 36 import javax.annotation.Generated; 37 38 // AUTO-GENERATED DOCUMENTATION AND CLASS. 39 /** 40 * Base stub class for the TargetSslProxies 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 TargetSslProxiesStub implements BackgroundResource { 46 47 public OperationCallable<DeleteTargetSslProxyRequest, Operation, Operation> deleteOperationCallable()48 deleteOperationCallable() { 49 throw new UnsupportedOperationException("Not implemented: deleteOperationCallable()"); 50 } 51 deleteCallable()52 public UnaryCallable<DeleteTargetSslProxyRequest, Operation> deleteCallable() { 53 throw new UnsupportedOperationException("Not implemented: deleteCallable()"); 54 } 55 getCallable()56 public UnaryCallable<GetTargetSslProxyRequest, TargetSslProxy> getCallable() { 57 throw new UnsupportedOperationException("Not implemented: getCallable()"); 58 } 59 60 public OperationCallable<InsertTargetSslProxyRequest, Operation, Operation> insertOperationCallable()61 insertOperationCallable() { 62 throw new UnsupportedOperationException("Not implemented: insertOperationCallable()"); 63 } 64 insertCallable()65 public UnaryCallable<InsertTargetSslProxyRequest, Operation> insertCallable() { 66 throw new UnsupportedOperationException("Not implemented: insertCallable()"); 67 } 68 listPagedCallable()69 public UnaryCallable<ListTargetSslProxiesRequest, ListPagedResponse> listPagedCallable() { 70 throw new UnsupportedOperationException("Not implemented: listPagedCallable()"); 71 } 72 listCallable()73 public UnaryCallable<ListTargetSslProxiesRequest, TargetSslProxyList> listCallable() { 74 throw new UnsupportedOperationException("Not implemented: listCallable()"); 75 } 76 77 public OperationCallable<SetBackendServiceTargetSslProxyRequest, Operation, Operation> setBackendServiceOperationCallable()78 setBackendServiceOperationCallable() { 79 throw new UnsupportedOperationException( 80 "Not implemented: setBackendServiceOperationCallable()"); 81 } 82 83 public UnaryCallable<SetBackendServiceTargetSslProxyRequest, Operation> setBackendServiceCallable()84 setBackendServiceCallable() { 85 throw new UnsupportedOperationException("Not implemented: setBackendServiceCallable()"); 86 } 87 88 public OperationCallable<SetCertificateMapTargetSslProxyRequest, Operation, Operation> setCertificateMapOperationCallable()89 setCertificateMapOperationCallable() { 90 throw new UnsupportedOperationException( 91 "Not implemented: setCertificateMapOperationCallable()"); 92 } 93 94 public UnaryCallable<SetCertificateMapTargetSslProxyRequest, Operation> setCertificateMapCallable()95 setCertificateMapCallable() { 96 throw new UnsupportedOperationException("Not implemented: setCertificateMapCallable()"); 97 } 98 99 public OperationCallable<SetProxyHeaderTargetSslProxyRequest, Operation, Operation> setProxyHeaderOperationCallable()100 setProxyHeaderOperationCallable() { 101 throw new UnsupportedOperationException("Not implemented: setProxyHeaderOperationCallable()"); 102 } 103 setProxyHeaderCallable()104 public UnaryCallable<SetProxyHeaderTargetSslProxyRequest, Operation> setProxyHeaderCallable() { 105 throw new UnsupportedOperationException("Not implemented: setProxyHeaderCallable()"); 106 } 107 108 public OperationCallable<SetSslCertificatesTargetSslProxyRequest, Operation, Operation> setSslCertificatesOperationCallable()109 setSslCertificatesOperationCallable() { 110 throw new UnsupportedOperationException( 111 "Not implemented: setSslCertificatesOperationCallable()"); 112 } 113 114 public UnaryCallable<SetSslCertificatesTargetSslProxyRequest, Operation> setSslCertificatesCallable()115 setSslCertificatesCallable() { 116 throw new UnsupportedOperationException("Not implemented: setSslCertificatesCallable()"); 117 } 118 119 public OperationCallable<SetSslPolicyTargetSslProxyRequest, Operation, Operation> setSslPolicyOperationCallable()120 setSslPolicyOperationCallable() { 121 throw new UnsupportedOperationException("Not implemented: setSslPolicyOperationCallable()"); 122 } 123 setSslPolicyCallable()124 public UnaryCallable<SetSslPolicyTargetSslProxyRequest, Operation> setSslPolicyCallable() { 125 throw new UnsupportedOperationException("Not implemented: setSslPolicyCallable()"); 126 } 127 128 @Override close()129 public abstract void close(); 130 } 131