• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.TargetHttpProxiesClient.AggregatedListPagedResponse;
20 import static com.google.cloud.compute.v1.TargetHttpProxiesClient.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.AggregatedListTargetHttpProxiesRequest;
26 import com.google.cloud.compute.v1.DeleteTargetHttpProxyRequest;
27 import com.google.cloud.compute.v1.GetTargetHttpProxyRequest;
28 import com.google.cloud.compute.v1.InsertTargetHttpProxyRequest;
29 import com.google.cloud.compute.v1.ListTargetHttpProxiesRequest;
30 import com.google.cloud.compute.v1.Operation;
31 import com.google.cloud.compute.v1.PatchTargetHttpProxyRequest;
32 import com.google.cloud.compute.v1.SetUrlMapTargetHttpProxyRequest;
33 import com.google.cloud.compute.v1.TargetHttpProxy;
34 import com.google.cloud.compute.v1.TargetHttpProxyAggregatedList;
35 import com.google.cloud.compute.v1.TargetHttpProxyList;
36 import javax.annotation.Generated;
37 
38 // AUTO-GENERATED DOCUMENTATION AND CLASS.
39 /**
40  * Base stub class for the TargetHttpProxies 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 TargetHttpProxiesStub implements BackgroundResource {
46 
47   public UnaryCallable<AggregatedListTargetHttpProxiesRequest, AggregatedListPagedResponse>
aggregatedListPagedCallable()48       aggregatedListPagedCallable() {
49     throw new UnsupportedOperationException("Not implemented: aggregatedListPagedCallable()");
50   }
51 
52   public UnaryCallable<AggregatedListTargetHttpProxiesRequest, TargetHttpProxyAggregatedList>
aggregatedListCallable()53       aggregatedListCallable() {
54     throw new UnsupportedOperationException("Not implemented: aggregatedListCallable()");
55   }
56 
57   public OperationCallable<DeleteTargetHttpProxyRequest, Operation, Operation>
deleteOperationCallable()58       deleteOperationCallable() {
59     throw new UnsupportedOperationException("Not implemented: deleteOperationCallable()");
60   }
61 
deleteCallable()62   public UnaryCallable<DeleteTargetHttpProxyRequest, Operation> deleteCallable() {
63     throw new UnsupportedOperationException("Not implemented: deleteCallable()");
64   }
65 
getCallable()66   public UnaryCallable<GetTargetHttpProxyRequest, TargetHttpProxy> getCallable() {
67     throw new UnsupportedOperationException("Not implemented: getCallable()");
68   }
69 
70   public OperationCallable<InsertTargetHttpProxyRequest, Operation, Operation>
insertOperationCallable()71       insertOperationCallable() {
72     throw new UnsupportedOperationException("Not implemented: insertOperationCallable()");
73   }
74 
insertCallable()75   public UnaryCallable<InsertTargetHttpProxyRequest, Operation> insertCallable() {
76     throw new UnsupportedOperationException("Not implemented: insertCallable()");
77   }
78 
listPagedCallable()79   public UnaryCallable<ListTargetHttpProxiesRequest, ListPagedResponse> listPagedCallable() {
80     throw new UnsupportedOperationException("Not implemented: listPagedCallable()");
81   }
82 
listCallable()83   public UnaryCallable<ListTargetHttpProxiesRequest, TargetHttpProxyList> listCallable() {
84     throw new UnsupportedOperationException("Not implemented: listCallable()");
85   }
86 
87   public OperationCallable<PatchTargetHttpProxyRequest, Operation, Operation>
patchOperationCallable()88       patchOperationCallable() {
89     throw new UnsupportedOperationException("Not implemented: patchOperationCallable()");
90   }
91 
patchCallable()92   public UnaryCallable<PatchTargetHttpProxyRequest, Operation> patchCallable() {
93     throw new UnsupportedOperationException("Not implemented: patchCallable()");
94   }
95 
96   public OperationCallable<SetUrlMapTargetHttpProxyRequest, Operation, Operation>
setUrlMapOperationCallable()97       setUrlMapOperationCallable() {
98     throw new UnsupportedOperationException("Not implemented: setUrlMapOperationCallable()");
99   }
100 
setUrlMapCallable()101   public UnaryCallable<SetUrlMapTargetHttpProxyRequest, Operation> setUrlMapCallable() {
102     throw new UnsupportedOperationException("Not implemented: setUrlMapCallable()");
103   }
104 
105   @Override
close()106   public abstract void close();
107 }
108