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.HealthChecksClient.AggregatedListPagedResponse; 20 import static com.google.cloud.compute.v1.HealthChecksClient.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.AggregatedListHealthChecksRequest; 26 import com.google.cloud.compute.v1.DeleteHealthCheckRequest; 27 import com.google.cloud.compute.v1.GetHealthCheckRequest; 28 import com.google.cloud.compute.v1.HealthCheck; 29 import com.google.cloud.compute.v1.HealthCheckList; 30 import com.google.cloud.compute.v1.HealthChecksAggregatedList; 31 import com.google.cloud.compute.v1.InsertHealthCheckRequest; 32 import com.google.cloud.compute.v1.ListHealthChecksRequest; 33 import com.google.cloud.compute.v1.Operation; 34 import com.google.cloud.compute.v1.PatchHealthCheckRequest; 35 import com.google.cloud.compute.v1.UpdateHealthCheckRequest; 36 import javax.annotation.Generated; 37 38 // AUTO-GENERATED DOCUMENTATION AND CLASS. 39 /** 40 * Base stub class for the HealthChecks 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 HealthChecksStub implements BackgroundResource { 46 47 public UnaryCallable<AggregatedListHealthChecksRequest, AggregatedListPagedResponse> aggregatedListPagedCallable()48 aggregatedListPagedCallable() { 49 throw new UnsupportedOperationException("Not implemented: aggregatedListPagedCallable()"); 50 } 51 52 public UnaryCallable<AggregatedListHealthChecksRequest, HealthChecksAggregatedList> aggregatedListCallable()53 aggregatedListCallable() { 54 throw new UnsupportedOperationException("Not implemented: aggregatedListCallable()"); 55 } 56 57 public OperationCallable<DeleteHealthCheckRequest, Operation, Operation> deleteOperationCallable()58 deleteOperationCallable() { 59 throw new UnsupportedOperationException("Not implemented: deleteOperationCallable()"); 60 } 61 deleteCallable()62 public UnaryCallable<DeleteHealthCheckRequest, Operation> deleteCallable() { 63 throw new UnsupportedOperationException("Not implemented: deleteCallable()"); 64 } 65 getCallable()66 public UnaryCallable<GetHealthCheckRequest, HealthCheck> getCallable() { 67 throw new UnsupportedOperationException("Not implemented: getCallable()"); 68 } 69 70 public OperationCallable<InsertHealthCheckRequest, Operation, Operation> insertOperationCallable()71 insertOperationCallable() { 72 throw new UnsupportedOperationException("Not implemented: insertOperationCallable()"); 73 } 74 insertCallable()75 public UnaryCallable<InsertHealthCheckRequest, Operation> insertCallable() { 76 throw new UnsupportedOperationException("Not implemented: insertCallable()"); 77 } 78 listPagedCallable()79 public UnaryCallable<ListHealthChecksRequest, ListPagedResponse> listPagedCallable() { 80 throw new UnsupportedOperationException("Not implemented: listPagedCallable()"); 81 } 82 listCallable()83 public UnaryCallable<ListHealthChecksRequest, HealthCheckList> listCallable() { 84 throw new UnsupportedOperationException("Not implemented: listCallable()"); 85 } 86 patchOperationCallable()87 public OperationCallable<PatchHealthCheckRequest, Operation, Operation> patchOperationCallable() { 88 throw new UnsupportedOperationException("Not implemented: patchOperationCallable()"); 89 } 90 patchCallable()91 public UnaryCallable<PatchHealthCheckRequest, Operation> patchCallable() { 92 throw new UnsupportedOperationException("Not implemented: patchCallable()"); 93 } 94 95 public OperationCallable<UpdateHealthCheckRequest, Operation, Operation> updateOperationCallable()96 updateOperationCallable() { 97 throw new UnsupportedOperationException("Not implemented: updateOperationCallable()"); 98 } 99 updateCallable()100 public UnaryCallable<UpdateHealthCheckRequest, Operation> updateCallable() { 101 throw new UnsupportedOperationException("Not implemented: updateCallable()"); 102 } 103 104 @Override close()105 public abstract void close(); 106 } 107