• 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.VpnGatewaysClient.AggregatedListPagedResponse;
20 import static com.google.cloud.compute.v1.VpnGatewaysClient.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.AggregatedListVpnGatewaysRequest;
26 import com.google.cloud.compute.v1.DeleteVpnGatewayRequest;
27 import com.google.cloud.compute.v1.GetStatusVpnGatewayRequest;
28 import com.google.cloud.compute.v1.GetVpnGatewayRequest;
29 import com.google.cloud.compute.v1.InsertVpnGatewayRequest;
30 import com.google.cloud.compute.v1.ListVpnGatewaysRequest;
31 import com.google.cloud.compute.v1.Operation;
32 import com.google.cloud.compute.v1.SetLabelsVpnGatewayRequest;
33 import com.google.cloud.compute.v1.TestIamPermissionsVpnGatewayRequest;
34 import com.google.cloud.compute.v1.TestPermissionsResponse;
35 import com.google.cloud.compute.v1.VpnGateway;
36 import com.google.cloud.compute.v1.VpnGatewayAggregatedList;
37 import com.google.cloud.compute.v1.VpnGatewayList;
38 import com.google.cloud.compute.v1.VpnGatewaysGetStatusResponse;
39 import javax.annotation.Generated;
40 
41 // AUTO-GENERATED DOCUMENTATION AND CLASS.
42 /**
43  * Base stub class for the VpnGateways service API.
44  *
45  * <p>This class is for advanced usage and reflects the underlying API directly.
46  */
47 @Generated("by gapic-generator-java")
48 public abstract class VpnGatewaysStub implements BackgroundResource {
49 
50   public UnaryCallable<AggregatedListVpnGatewaysRequest, AggregatedListPagedResponse>
aggregatedListPagedCallable()51       aggregatedListPagedCallable() {
52     throw new UnsupportedOperationException("Not implemented: aggregatedListPagedCallable()");
53   }
54 
55   public UnaryCallable<AggregatedListVpnGatewaysRequest, VpnGatewayAggregatedList>
aggregatedListCallable()56       aggregatedListCallable() {
57     throw new UnsupportedOperationException("Not implemented: aggregatedListCallable()");
58   }
59 
60   public OperationCallable<DeleteVpnGatewayRequest, Operation, Operation>
deleteOperationCallable()61       deleteOperationCallable() {
62     throw new UnsupportedOperationException("Not implemented: deleteOperationCallable()");
63   }
64 
deleteCallable()65   public UnaryCallable<DeleteVpnGatewayRequest, Operation> deleteCallable() {
66     throw new UnsupportedOperationException("Not implemented: deleteCallable()");
67   }
68 
getCallable()69   public UnaryCallable<GetVpnGatewayRequest, VpnGateway> getCallable() {
70     throw new UnsupportedOperationException("Not implemented: getCallable()");
71   }
72 
73   public UnaryCallable<GetStatusVpnGatewayRequest, VpnGatewaysGetStatusResponse>
getStatusCallable()74       getStatusCallable() {
75     throw new UnsupportedOperationException("Not implemented: getStatusCallable()");
76   }
77 
78   public OperationCallable<InsertVpnGatewayRequest, Operation, Operation>
insertOperationCallable()79       insertOperationCallable() {
80     throw new UnsupportedOperationException("Not implemented: insertOperationCallable()");
81   }
82 
insertCallable()83   public UnaryCallable<InsertVpnGatewayRequest, Operation> insertCallable() {
84     throw new UnsupportedOperationException("Not implemented: insertCallable()");
85   }
86 
listPagedCallable()87   public UnaryCallable<ListVpnGatewaysRequest, ListPagedResponse> listPagedCallable() {
88     throw new UnsupportedOperationException("Not implemented: listPagedCallable()");
89   }
90 
listCallable()91   public UnaryCallable<ListVpnGatewaysRequest, VpnGatewayList> listCallable() {
92     throw new UnsupportedOperationException("Not implemented: listCallable()");
93   }
94 
95   public OperationCallable<SetLabelsVpnGatewayRequest, Operation, Operation>
setLabelsOperationCallable()96       setLabelsOperationCallable() {
97     throw new UnsupportedOperationException("Not implemented: setLabelsOperationCallable()");
98   }
99 
setLabelsCallable()100   public UnaryCallable<SetLabelsVpnGatewayRequest, Operation> setLabelsCallable() {
101     throw new UnsupportedOperationException("Not implemented: setLabelsCallable()");
102   }
103 
104   public UnaryCallable<TestIamPermissionsVpnGatewayRequest, TestPermissionsResponse>
testIamPermissionsCallable()105       testIamPermissionsCallable() {
106     throw new UnsupportedOperationException("Not implemented: testIamPermissionsCallable()");
107   }
108 
109   @Override
close()110   public abstract void close();
111 }
112