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.RegionUrlMapsClient.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.DeleteRegionUrlMapRequest; 25 import com.google.cloud.compute.v1.GetRegionUrlMapRequest; 26 import com.google.cloud.compute.v1.InsertRegionUrlMapRequest; 27 import com.google.cloud.compute.v1.ListRegionUrlMapsRequest; 28 import com.google.cloud.compute.v1.Operation; 29 import com.google.cloud.compute.v1.PatchRegionUrlMapRequest; 30 import com.google.cloud.compute.v1.UpdateRegionUrlMapRequest; 31 import com.google.cloud.compute.v1.UrlMap; 32 import com.google.cloud.compute.v1.UrlMapList; 33 import com.google.cloud.compute.v1.UrlMapsValidateResponse; 34 import com.google.cloud.compute.v1.ValidateRegionUrlMapRequest; 35 import javax.annotation.Generated; 36 37 // AUTO-GENERATED DOCUMENTATION AND CLASS. 38 /** 39 * Base stub class for the RegionUrlMaps 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 RegionUrlMapsStub implements BackgroundResource { 45 46 public OperationCallable<DeleteRegionUrlMapRequest, Operation, Operation> deleteOperationCallable()47 deleteOperationCallable() { 48 throw new UnsupportedOperationException("Not implemented: deleteOperationCallable()"); 49 } 50 deleteCallable()51 public UnaryCallable<DeleteRegionUrlMapRequest, Operation> deleteCallable() { 52 throw new UnsupportedOperationException("Not implemented: deleteCallable()"); 53 } 54 getCallable()55 public UnaryCallable<GetRegionUrlMapRequest, UrlMap> getCallable() { 56 throw new UnsupportedOperationException("Not implemented: getCallable()"); 57 } 58 59 public OperationCallable<InsertRegionUrlMapRequest, Operation, Operation> insertOperationCallable()60 insertOperationCallable() { 61 throw new UnsupportedOperationException("Not implemented: insertOperationCallable()"); 62 } 63 insertCallable()64 public UnaryCallable<InsertRegionUrlMapRequest, Operation> insertCallable() { 65 throw new UnsupportedOperationException("Not implemented: insertCallable()"); 66 } 67 listPagedCallable()68 public UnaryCallable<ListRegionUrlMapsRequest, ListPagedResponse> listPagedCallable() { 69 throw new UnsupportedOperationException("Not implemented: listPagedCallable()"); 70 } 71 listCallable()72 public UnaryCallable<ListRegionUrlMapsRequest, UrlMapList> listCallable() { 73 throw new UnsupportedOperationException("Not implemented: listCallable()"); 74 } 75 76 public OperationCallable<PatchRegionUrlMapRequest, Operation, Operation> patchOperationCallable()77 patchOperationCallable() { 78 throw new UnsupportedOperationException("Not implemented: patchOperationCallable()"); 79 } 80 patchCallable()81 public UnaryCallable<PatchRegionUrlMapRequest, Operation> patchCallable() { 82 throw new UnsupportedOperationException("Not implemented: patchCallable()"); 83 } 84 85 public OperationCallable<UpdateRegionUrlMapRequest, Operation, Operation> updateOperationCallable()86 updateOperationCallable() { 87 throw new UnsupportedOperationException("Not implemented: updateOperationCallable()"); 88 } 89 updateCallable()90 public UnaryCallable<UpdateRegionUrlMapRequest, Operation> updateCallable() { 91 throw new UnsupportedOperationException("Not implemented: updateCallable()"); 92 } 93 validateCallable()94 public UnaryCallable<ValidateRegionUrlMapRequest, UrlMapsValidateResponse> validateCallable() { 95 throw new UnsupportedOperationException("Not implemented: validateCallable()"); 96 } 97 98 @Override close()99 public abstract void close(); 100 } 101