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