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.SslPoliciesClient.AggregatedListPagedResponse; 20 import static com.google.cloud.compute.v1.SslPoliciesClient.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.AggregatedListSslPoliciesRequest; 26 import com.google.cloud.compute.v1.DeleteSslPolicyRequest; 27 import com.google.cloud.compute.v1.GetSslPolicyRequest; 28 import com.google.cloud.compute.v1.InsertSslPolicyRequest; 29 import com.google.cloud.compute.v1.ListAvailableFeaturesSslPoliciesRequest; 30 import com.google.cloud.compute.v1.ListSslPoliciesRequest; 31 import com.google.cloud.compute.v1.Operation; 32 import com.google.cloud.compute.v1.PatchSslPolicyRequest; 33 import com.google.cloud.compute.v1.SslPoliciesAggregatedList; 34 import com.google.cloud.compute.v1.SslPoliciesList; 35 import com.google.cloud.compute.v1.SslPoliciesListAvailableFeaturesResponse; 36 import com.google.cloud.compute.v1.SslPolicy; 37 import javax.annotation.Generated; 38 39 // AUTO-GENERATED DOCUMENTATION AND CLASS. 40 /** 41 * Base stub class for the SslPolicies service API. 42 * 43 * <p>This class is for advanced usage and reflects the underlying API directly. 44 */ 45 @Generated("by gapic-generator-java") 46 public abstract class SslPoliciesStub implements BackgroundResource { 47 48 public UnaryCallable<AggregatedListSslPoliciesRequest, AggregatedListPagedResponse> aggregatedListPagedCallable()49 aggregatedListPagedCallable() { 50 throw new UnsupportedOperationException("Not implemented: aggregatedListPagedCallable()"); 51 } 52 53 public UnaryCallable<AggregatedListSslPoliciesRequest, SslPoliciesAggregatedList> aggregatedListCallable()54 aggregatedListCallable() { 55 throw new UnsupportedOperationException("Not implemented: aggregatedListCallable()"); 56 } 57 deleteOperationCallable()58 public OperationCallable<DeleteSslPolicyRequest, Operation, Operation> deleteOperationCallable() { 59 throw new UnsupportedOperationException("Not implemented: deleteOperationCallable()"); 60 } 61 deleteCallable()62 public UnaryCallable<DeleteSslPolicyRequest, Operation> deleteCallable() { 63 throw new UnsupportedOperationException("Not implemented: deleteCallable()"); 64 } 65 getCallable()66 public UnaryCallable<GetSslPolicyRequest, SslPolicy> getCallable() { 67 throw new UnsupportedOperationException("Not implemented: getCallable()"); 68 } 69 insertOperationCallable()70 public OperationCallable<InsertSslPolicyRequest, Operation, Operation> insertOperationCallable() { 71 throw new UnsupportedOperationException("Not implemented: insertOperationCallable()"); 72 } 73 insertCallable()74 public UnaryCallable<InsertSslPolicyRequest, Operation> insertCallable() { 75 throw new UnsupportedOperationException("Not implemented: insertCallable()"); 76 } 77 listPagedCallable()78 public UnaryCallable<ListSslPoliciesRequest, ListPagedResponse> listPagedCallable() { 79 throw new UnsupportedOperationException("Not implemented: listPagedCallable()"); 80 } 81 listCallable()82 public UnaryCallable<ListSslPoliciesRequest, SslPoliciesList> listCallable() { 83 throw new UnsupportedOperationException("Not implemented: listCallable()"); 84 } 85 86 public UnaryCallable< 87 ListAvailableFeaturesSslPoliciesRequest, SslPoliciesListAvailableFeaturesResponse> listAvailableFeaturesCallable()88 listAvailableFeaturesCallable() { 89 throw new UnsupportedOperationException("Not implemented: listAvailableFeaturesCallable()"); 90 } 91 patchOperationCallable()92 public OperationCallable<PatchSslPolicyRequest, Operation, Operation> patchOperationCallable() { 93 throw new UnsupportedOperationException("Not implemented: patchOperationCallable()"); 94 } 95 patchCallable()96 public UnaryCallable<PatchSslPolicyRequest, Operation> patchCallable() { 97 throw new UnsupportedOperationException("Not implemented: patchCallable()"); 98 } 99 100 @Override close()101 public abstract void close(); 102 } 103