• 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.InterconnectAttachmentsClient.AggregatedListPagedResponse;
20 import static com.google.cloud.compute.v1.InterconnectAttachmentsClient.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.AggregatedListInterconnectAttachmentsRequest;
26 import com.google.cloud.compute.v1.DeleteInterconnectAttachmentRequest;
27 import com.google.cloud.compute.v1.GetInterconnectAttachmentRequest;
28 import com.google.cloud.compute.v1.InsertInterconnectAttachmentRequest;
29 import com.google.cloud.compute.v1.InterconnectAttachment;
30 import com.google.cloud.compute.v1.InterconnectAttachmentAggregatedList;
31 import com.google.cloud.compute.v1.InterconnectAttachmentList;
32 import com.google.cloud.compute.v1.ListInterconnectAttachmentsRequest;
33 import com.google.cloud.compute.v1.Operation;
34 import com.google.cloud.compute.v1.PatchInterconnectAttachmentRequest;
35 import com.google.cloud.compute.v1.SetLabelsInterconnectAttachmentRequest;
36 import javax.annotation.Generated;
37 
38 // AUTO-GENERATED DOCUMENTATION AND CLASS.
39 /**
40  * Base stub class for the InterconnectAttachments 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 InterconnectAttachmentsStub implements BackgroundResource {
46 
47   public UnaryCallable<AggregatedListInterconnectAttachmentsRequest, AggregatedListPagedResponse>
aggregatedListPagedCallable()48       aggregatedListPagedCallable() {
49     throw new UnsupportedOperationException("Not implemented: aggregatedListPagedCallable()");
50   }
51 
52   public UnaryCallable<
53           AggregatedListInterconnectAttachmentsRequest, InterconnectAttachmentAggregatedList>
aggregatedListCallable()54       aggregatedListCallable() {
55     throw new UnsupportedOperationException("Not implemented: aggregatedListCallable()");
56   }
57 
58   public OperationCallable<DeleteInterconnectAttachmentRequest, Operation, Operation>
deleteOperationCallable()59       deleteOperationCallable() {
60     throw new UnsupportedOperationException("Not implemented: deleteOperationCallable()");
61   }
62 
deleteCallable()63   public UnaryCallable<DeleteInterconnectAttachmentRequest, Operation> deleteCallable() {
64     throw new UnsupportedOperationException("Not implemented: deleteCallable()");
65   }
66 
getCallable()67   public UnaryCallable<GetInterconnectAttachmentRequest, InterconnectAttachment> getCallable() {
68     throw new UnsupportedOperationException("Not implemented: getCallable()");
69   }
70 
71   public OperationCallable<InsertInterconnectAttachmentRequest, Operation, Operation>
insertOperationCallable()72       insertOperationCallable() {
73     throw new UnsupportedOperationException("Not implemented: insertOperationCallable()");
74   }
75 
insertCallable()76   public UnaryCallable<InsertInterconnectAttachmentRequest, Operation> insertCallable() {
77     throw new UnsupportedOperationException("Not implemented: insertCallable()");
78   }
79 
listPagedCallable()80   public UnaryCallable<ListInterconnectAttachmentsRequest, ListPagedResponse> listPagedCallable() {
81     throw new UnsupportedOperationException("Not implemented: listPagedCallable()");
82   }
83 
84   public UnaryCallable<ListInterconnectAttachmentsRequest, InterconnectAttachmentList>
listCallable()85       listCallable() {
86     throw new UnsupportedOperationException("Not implemented: listCallable()");
87   }
88 
89   public OperationCallable<PatchInterconnectAttachmentRequest, Operation, Operation>
patchOperationCallable()90       patchOperationCallable() {
91     throw new UnsupportedOperationException("Not implemented: patchOperationCallable()");
92   }
93 
patchCallable()94   public UnaryCallable<PatchInterconnectAttachmentRequest, Operation> patchCallable() {
95     throw new UnsupportedOperationException("Not implemented: patchCallable()");
96   }
97 
98   public OperationCallable<SetLabelsInterconnectAttachmentRequest, Operation, Operation>
setLabelsOperationCallable()99       setLabelsOperationCallable() {
100     throw new UnsupportedOperationException("Not implemented: setLabelsOperationCallable()");
101   }
102 
setLabelsCallable()103   public UnaryCallable<SetLabelsInterconnectAttachmentRequest, Operation> setLabelsCallable() {
104     throw new UnsupportedOperationException("Not implemented: setLabelsCallable()");
105   }
106 
107   @Override
close()108   public abstract void close();
109 }
110