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