google-cloud-edge_network-v1 0.a → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +12 -0
- data/AUTHENTICATION.md +122 -0
- data/README.md +144 -8
- data/lib/google/cloud/edge_network/v1/bindings_override.rb +102 -0
- data/lib/google/cloud/edge_network/v1/edge_network/client.rb +3178 -0
- data/lib/google/cloud/edge_network/v1/edge_network/credentials.rb +47 -0
- data/lib/google/cloud/edge_network/v1/edge_network/operations.rb +801 -0
- data/lib/google/cloud/edge_network/v1/edge_network/paths.rb +174 -0
- data/lib/google/cloud/edge_network/v1/edge_network/rest/client.rb +2972 -0
- data/lib/google/cloud/edge_network/v1/edge_network/rest/operations.rb +895 -0
- data/lib/google/cloud/edge_network/v1/edge_network/rest/service_stub.rb +1601 -0
- data/lib/google/cloud/edge_network/v1/edge_network/rest.rb +57 -0
- data/lib/google/cloud/edge_network/v1/edge_network.rb +59 -0
- data/lib/google/cloud/edge_network/v1/rest.rb +38 -0
- data/lib/google/cloud/edge_network/v1/version.rb +7 -2
- data/lib/google/cloud/edge_network/v1.rb +45 -0
- data/lib/google/cloud/edgenetwork/v1/resources_pb.rb +69 -0
- data/lib/google/cloud/edgenetwork/v1/service_pb.rb +92 -0
- data/lib/google/cloud/edgenetwork/v1/service_services_pb.rb +98 -0
- data/lib/google-cloud-edge_network-v1.rb +21 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/client.rb +395 -0
- data/proto_docs/google/api/field_behavior.rb +85 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/api/resource.rb +222 -0
- data/proto_docs/google/cloud/edgenetwork/v1/resources.rb +637 -0
- data/proto_docs/google/cloud/edgenetwork/v1/service.rb +709 -0
- data/proto_docs/google/longrunning/operations.rb +164 -0
- data/proto_docs/google/protobuf/any.rb +144 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +34 -0
- data/proto_docs/google/protobuf/field_mask.rb +229 -0
- data/proto_docs/google/protobuf/timestamp.rb +127 -0
- data/proto_docs/google/rpc/status.rb +48 -0
- metadata +209 -13
@@ -0,0 +1,709 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module EdgeNetwork
|
23
|
+
module V1
|
24
|
+
# Message for requesting list of Zones
|
25
|
+
# @!attribute [rw] parent
|
26
|
+
# @return [::String]
|
27
|
+
# Required. Parent value for ListZonesRequest
|
28
|
+
# @!attribute [rw] page_size
|
29
|
+
# @return [::Integer]
|
30
|
+
# Requested page size. Server may return fewer items than requested.
|
31
|
+
# If unspecified, server will pick an appropriate default.
|
32
|
+
# @!attribute [rw] page_token
|
33
|
+
# @return [::String]
|
34
|
+
# A token identifying a page of results the server should return.
|
35
|
+
# @!attribute [rw] filter
|
36
|
+
# @return [::String]
|
37
|
+
# Filtering results
|
38
|
+
# @!attribute [rw] order_by
|
39
|
+
# @return [::String]
|
40
|
+
# Hint for how to order the results
|
41
|
+
class ListZonesRequest
|
42
|
+
include ::Google::Protobuf::MessageExts
|
43
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
44
|
+
end
|
45
|
+
|
46
|
+
# Message for response to listing Zones
|
47
|
+
# @!attribute [rw] zones
|
48
|
+
# @return [::Array<::Google::Cloud::EdgeNetwork::V1::Zone>]
|
49
|
+
# The list of Zone
|
50
|
+
# @!attribute [rw] next_page_token
|
51
|
+
# @return [::String]
|
52
|
+
# A token identifying a page of results the server should return.
|
53
|
+
# @!attribute [rw] unreachable
|
54
|
+
# @return [::Array<::String>]
|
55
|
+
# Locations that could not be reached.
|
56
|
+
class ListZonesResponse
|
57
|
+
include ::Google::Protobuf::MessageExts
|
58
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
59
|
+
end
|
60
|
+
|
61
|
+
# Message for getting a Zone
|
62
|
+
# @!attribute [rw] name
|
63
|
+
# @return [::String]
|
64
|
+
# Required. Name of the resource
|
65
|
+
class GetZoneRequest
|
66
|
+
include ::Google::Protobuf::MessageExts
|
67
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
68
|
+
end
|
69
|
+
|
70
|
+
# Message for requesting list of Networks
|
71
|
+
# @!attribute [rw] parent
|
72
|
+
# @return [::String]
|
73
|
+
# Required. Parent value for ListNetworksRequest
|
74
|
+
# @!attribute [rw] page_size
|
75
|
+
# @return [::Integer]
|
76
|
+
# Requested page size. Server may return fewer items than requested.
|
77
|
+
# If unspecified, server will pick an appropriate default.
|
78
|
+
# @!attribute [rw] page_token
|
79
|
+
# @return [::String]
|
80
|
+
# A token identifying a page of results the server should return.
|
81
|
+
# @!attribute [rw] filter
|
82
|
+
# @return [::String]
|
83
|
+
# Filtering results
|
84
|
+
# @!attribute [rw] order_by
|
85
|
+
# @return [::String]
|
86
|
+
# Hint for how to order the results
|
87
|
+
class ListNetworksRequest
|
88
|
+
include ::Google::Protobuf::MessageExts
|
89
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
90
|
+
end
|
91
|
+
|
92
|
+
# Message for response to listing Networks
|
93
|
+
# @!attribute [rw] networks
|
94
|
+
# @return [::Array<::Google::Cloud::EdgeNetwork::V1::Network>]
|
95
|
+
# The list of Network
|
96
|
+
# @!attribute [rw] next_page_token
|
97
|
+
# @return [::String]
|
98
|
+
# A token identifying a page of results the server should return.
|
99
|
+
# @!attribute [rw] unreachable
|
100
|
+
# @return [::Array<::String>]
|
101
|
+
# Locations that could not be reached.
|
102
|
+
class ListNetworksResponse
|
103
|
+
include ::Google::Protobuf::MessageExts
|
104
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
105
|
+
end
|
106
|
+
|
107
|
+
# Message for getting a Network
|
108
|
+
# @!attribute [rw] name
|
109
|
+
# @return [::String]
|
110
|
+
# Required. Name of the resource
|
111
|
+
class GetNetworkRequest
|
112
|
+
include ::Google::Protobuf::MessageExts
|
113
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
114
|
+
end
|
115
|
+
|
116
|
+
# Message for creating a Network
|
117
|
+
# @!attribute [rw] parent
|
118
|
+
# @return [::String]
|
119
|
+
# Required. Value for parent.
|
120
|
+
# @!attribute [rw] network_id
|
121
|
+
# @return [::String]
|
122
|
+
# Required. Id of the requesting object
|
123
|
+
# If auto-generating Id server-side, remove this field and
|
124
|
+
# network_id from the method_signature of Create RPC
|
125
|
+
# @!attribute [rw] network
|
126
|
+
# @return [::Google::Cloud::EdgeNetwork::V1::Network]
|
127
|
+
# Required. The resource being created
|
128
|
+
# @!attribute [rw] request_id
|
129
|
+
# @return [::String]
|
130
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
131
|
+
# request ID so that if you must retry your request, the server will know to
|
132
|
+
# ignore the request if it has already been completed. The server will
|
133
|
+
# guarantee that for at least 60 minutes since the first request.
|
134
|
+
#
|
135
|
+
# For example, consider a situation where you make an initial request and
|
136
|
+
# the request times out. If you make the request again with the same request
|
137
|
+
# ID, the server can check if original operation with the same request ID
|
138
|
+
# was received, and if so, will ignore the second request. This prevents
|
139
|
+
# clients from accidentally creating duplicate commitments.
|
140
|
+
#
|
141
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
142
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
143
|
+
class CreateNetworkRequest
|
144
|
+
include ::Google::Protobuf::MessageExts
|
145
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
146
|
+
end
|
147
|
+
|
148
|
+
# Message for deleting a Network
|
149
|
+
# @!attribute [rw] name
|
150
|
+
# @return [::String]
|
151
|
+
# Required. Name of the resource
|
152
|
+
# @!attribute [rw] request_id
|
153
|
+
# @return [::String]
|
154
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
155
|
+
# request ID so that if you must retry your request, the server will know to
|
156
|
+
# ignore the request if it has already been completed. The server will
|
157
|
+
# guarantee that for at least 60 minutes after the first request.
|
158
|
+
#
|
159
|
+
# For example, consider a situation where you make an initial request and
|
160
|
+
# the request times out. If you make the request again with the same request
|
161
|
+
# ID, the server can check if original operation with the same request ID
|
162
|
+
# was received, and if so, will ignore the second request. This prevents
|
163
|
+
# clients from accidentally creating duplicate commitments.
|
164
|
+
#
|
165
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
166
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
167
|
+
class DeleteNetworkRequest
|
168
|
+
include ::Google::Protobuf::MessageExts
|
169
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
170
|
+
end
|
171
|
+
|
172
|
+
# Message for requesting list of Subnets
|
173
|
+
# @!attribute [rw] parent
|
174
|
+
# @return [::String]
|
175
|
+
# Required. Parent value for ListSubnetsRequest
|
176
|
+
# @!attribute [rw] page_size
|
177
|
+
# @return [::Integer]
|
178
|
+
# Requested page size. Server may return fewer items than requested.
|
179
|
+
# If unspecified, server will pick an appropriate default.
|
180
|
+
# @!attribute [rw] page_token
|
181
|
+
# @return [::String]
|
182
|
+
# A token identifying a page of results the server should return.
|
183
|
+
# @!attribute [rw] filter
|
184
|
+
# @return [::String]
|
185
|
+
# Filtering results
|
186
|
+
# @!attribute [rw] order_by
|
187
|
+
# @return [::String]
|
188
|
+
# Hint for how to order the results
|
189
|
+
class ListSubnetsRequest
|
190
|
+
include ::Google::Protobuf::MessageExts
|
191
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
192
|
+
end
|
193
|
+
|
194
|
+
# Message for response to listing Subnets
|
195
|
+
# @!attribute [rw] subnets
|
196
|
+
# @return [::Array<::Google::Cloud::EdgeNetwork::V1::Subnet>]
|
197
|
+
# The list of Subnet
|
198
|
+
# @!attribute [rw] next_page_token
|
199
|
+
# @return [::String]
|
200
|
+
# A token identifying a page of results the server should return.
|
201
|
+
# @!attribute [rw] unreachable
|
202
|
+
# @return [::Array<::String>]
|
203
|
+
# Locations that could not be reached.
|
204
|
+
class ListSubnetsResponse
|
205
|
+
include ::Google::Protobuf::MessageExts
|
206
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
207
|
+
end
|
208
|
+
|
209
|
+
# Message for getting a Subnet
|
210
|
+
# @!attribute [rw] name
|
211
|
+
# @return [::String]
|
212
|
+
# Required. Name of the resource
|
213
|
+
class GetSubnetRequest
|
214
|
+
include ::Google::Protobuf::MessageExts
|
215
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
216
|
+
end
|
217
|
+
|
218
|
+
# Message for creating a Subnet
|
219
|
+
# @!attribute [rw] parent
|
220
|
+
# @return [::String]
|
221
|
+
# Required. Value for parent.
|
222
|
+
# @!attribute [rw] subnet_id
|
223
|
+
# @return [::String]
|
224
|
+
# Required. Id of the requesting object
|
225
|
+
# If auto-generating Id server-side, remove this field and
|
226
|
+
# subnet_id from the method_signature of Create RPC
|
227
|
+
# @!attribute [rw] subnet
|
228
|
+
# @return [::Google::Cloud::EdgeNetwork::V1::Subnet]
|
229
|
+
# Required. The resource being created
|
230
|
+
# @!attribute [rw] request_id
|
231
|
+
# @return [::String]
|
232
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
233
|
+
# request ID so that if you must retry your request, the server will know to
|
234
|
+
# ignore the request if it has already been completed. The server will
|
235
|
+
# guarantee that for at least 60 minutes since the first request.
|
236
|
+
#
|
237
|
+
# For example, consider a situation where you make an initial request and
|
238
|
+
# the request times out. If you make the request again with the same request
|
239
|
+
# ID, the server can check if original operation with the same request ID
|
240
|
+
# was received, and if so, will ignore the second request. This prevents
|
241
|
+
# clients from accidentally creating duplicate commitments.
|
242
|
+
#
|
243
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
244
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
245
|
+
class CreateSubnetRequest
|
246
|
+
include ::Google::Protobuf::MessageExts
|
247
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
248
|
+
end
|
249
|
+
|
250
|
+
# Message for updating a Subnet
|
251
|
+
# @!attribute [rw] update_mask
|
252
|
+
# @return [::Google::Protobuf::FieldMask]
|
253
|
+
# Required. Field mask is used to specify the fields to be overwritten in the
|
254
|
+
# Subnet resource by the update.
|
255
|
+
# The fields specified in the update_mask are relative to the resource, not
|
256
|
+
# the full request. A field will be overwritten if it is in the mask. If the
|
257
|
+
# user does not provide a mask then all fields will be overwritten.
|
258
|
+
# @!attribute [rw] subnet
|
259
|
+
# @return [::Google::Cloud::EdgeNetwork::V1::Subnet]
|
260
|
+
# Required. The resource being updated
|
261
|
+
# @!attribute [rw] request_id
|
262
|
+
# @return [::String]
|
263
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
264
|
+
# request ID so that if you must retry your request, the server will know to
|
265
|
+
# ignore the request if it has already been completed. The server will
|
266
|
+
# guarantee that for at least 60 minutes since the first request.
|
267
|
+
#
|
268
|
+
# For example, consider a situation where you make an initial request and
|
269
|
+
# the request times out. If you make the request again with the same request
|
270
|
+
# ID, the server can check if original operation with the same request ID
|
271
|
+
# was received, and if so, will ignore the second request. This prevents
|
272
|
+
# clients from accidentally creating duplicate commitments.
|
273
|
+
#
|
274
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
275
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
276
|
+
class UpdateSubnetRequest
|
277
|
+
include ::Google::Protobuf::MessageExts
|
278
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
279
|
+
end
|
280
|
+
|
281
|
+
# Message for deleting a Subnet
|
282
|
+
# @!attribute [rw] name
|
283
|
+
# @return [::String]
|
284
|
+
# Required. Name of the resource
|
285
|
+
# @!attribute [rw] request_id
|
286
|
+
# @return [::String]
|
287
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
288
|
+
# request ID so that if you must retry your request, the server will know to
|
289
|
+
# ignore the request if it has already been completed. The server will
|
290
|
+
# guarantee that for at least 60 minutes after the first request.
|
291
|
+
#
|
292
|
+
# For example, consider a situation where you make an initial request and
|
293
|
+
# the request times out. If you make the request again with the same request
|
294
|
+
# ID, the server can check if original operation with the same request ID
|
295
|
+
# was received, and if so, will ignore the second request. This prevents
|
296
|
+
# clients from accidentally creating duplicate commitments.
|
297
|
+
#
|
298
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
299
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
300
|
+
class DeleteSubnetRequest
|
301
|
+
include ::Google::Protobuf::MessageExts
|
302
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
303
|
+
end
|
304
|
+
|
305
|
+
# Message for requesting list of Interconnects
|
306
|
+
# @!attribute [rw] parent
|
307
|
+
# @return [::String]
|
308
|
+
# Required. Parent value for ListInterconnectsRequest
|
309
|
+
# @!attribute [rw] page_size
|
310
|
+
# @return [::Integer]
|
311
|
+
# Requested page size. Server may return fewer items than requested.
|
312
|
+
# If unspecified, server will pick an appropriate default.
|
313
|
+
# @!attribute [rw] page_token
|
314
|
+
# @return [::String]
|
315
|
+
# A token identifying a page of results the server should return.
|
316
|
+
# @!attribute [rw] filter
|
317
|
+
# @return [::String]
|
318
|
+
# Filtering results
|
319
|
+
# @!attribute [rw] order_by
|
320
|
+
# @return [::String]
|
321
|
+
# Hint for how to order the results
|
322
|
+
class ListInterconnectsRequest
|
323
|
+
include ::Google::Protobuf::MessageExts
|
324
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
325
|
+
end
|
326
|
+
|
327
|
+
# Message for response to listing Interconnects
|
328
|
+
# @!attribute [rw] interconnects
|
329
|
+
# @return [::Array<::Google::Cloud::EdgeNetwork::V1::Interconnect>]
|
330
|
+
# The list of Interconnect
|
331
|
+
# @!attribute [rw] next_page_token
|
332
|
+
# @return [::String]
|
333
|
+
# A token identifying a page of results the server should return.
|
334
|
+
# @!attribute [rw] unreachable
|
335
|
+
# @return [::Array<::String>]
|
336
|
+
# Locations that could not be reached.
|
337
|
+
class ListInterconnectsResponse
|
338
|
+
include ::Google::Protobuf::MessageExts
|
339
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
340
|
+
end
|
341
|
+
|
342
|
+
# Message for getting a Interconnect
|
343
|
+
# @!attribute [rw] name
|
344
|
+
# @return [::String]
|
345
|
+
# Required. Name of the resource
|
346
|
+
class GetInterconnectRequest
|
347
|
+
include ::Google::Protobuf::MessageExts
|
348
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
349
|
+
end
|
350
|
+
|
351
|
+
# Message for requesting list of InterconnectAttachments
|
352
|
+
# @!attribute [rw] parent
|
353
|
+
# @return [::String]
|
354
|
+
# Required. Parent value for ListInterconnectAttachmentsRequest
|
355
|
+
# @!attribute [rw] page_size
|
356
|
+
# @return [::Integer]
|
357
|
+
# Requested page size. Server may return fewer items than requested.
|
358
|
+
# If unspecified, server will pick an appropriate default.
|
359
|
+
# @!attribute [rw] page_token
|
360
|
+
# @return [::String]
|
361
|
+
# A token identifying a page of results the server should return.
|
362
|
+
# @!attribute [rw] filter
|
363
|
+
# @return [::String]
|
364
|
+
# Filtering results
|
365
|
+
# @!attribute [rw] order_by
|
366
|
+
# @return [::String]
|
367
|
+
# Hint for how to order the results
|
368
|
+
class ListInterconnectAttachmentsRequest
|
369
|
+
include ::Google::Protobuf::MessageExts
|
370
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
371
|
+
end
|
372
|
+
|
373
|
+
# Message for response to listing InterconnectAttachments
|
374
|
+
# @!attribute [rw] interconnect_attachments
|
375
|
+
# @return [::Array<::Google::Cloud::EdgeNetwork::V1::InterconnectAttachment>]
|
376
|
+
# The list of InterconnectAttachment
|
377
|
+
# @!attribute [rw] next_page_token
|
378
|
+
# @return [::String]
|
379
|
+
# A token identifying a page of results the server should return.
|
380
|
+
# @!attribute [rw] unreachable
|
381
|
+
# @return [::Array<::String>]
|
382
|
+
# Locations that could not be reached.
|
383
|
+
class ListInterconnectAttachmentsResponse
|
384
|
+
include ::Google::Protobuf::MessageExts
|
385
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
386
|
+
end
|
387
|
+
|
388
|
+
# Message for getting a InterconnectAttachment
|
389
|
+
# @!attribute [rw] name
|
390
|
+
# @return [::String]
|
391
|
+
# Required. Name of the resource
|
392
|
+
class GetInterconnectAttachmentRequest
|
393
|
+
include ::Google::Protobuf::MessageExts
|
394
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
395
|
+
end
|
396
|
+
|
397
|
+
# Message for creating a InterconnectAttachment
|
398
|
+
# @!attribute [rw] parent
|
399
|
+
# @return [::String]
|
400
|
+
# Required. Value for parent.
|
401
|
+
# @!attribute [rw] interconnect_attachment_id
|
402
|
+
# @return [::String]
|
403
|
+
# Required. Id of the requesting object
|
404
|
+
# If auto-generating Id server-side, remove this field and
|
405
|
+
# interconnect_attachment_id from the method_signature of Create RPC
|
406
|
+
# @!attribute [rw] interconnect_attachment
|
407
|
+
# @return [::Google::Cloud::EdgeNetwork::V1::InterconnectAttachment]
|
408
|
+
# Required. The resource being created
|
409
|
+
# @!attribute [rw] request_id
|
410
|
+
# @return [::String]
|
411
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
412
|
+
# request ID so that if you must retry your request, the server will know to
|
413
|
+
# ignore the request if it has already been completed. The server will
|
414
|
+
# guarantee that for at least 60 minutes since the first request.
|
415
|
+
#
|
416
|
+
# For example, consider a situation where you make an initial request and
|
417
|
+
# the request times out. If you make the request again with the same request
|
418
|
+
# ID, the server can check if original operation with the same request ID
|
419
|
+
# was received, and if so, will ignore the second request. This prevents
|
420
|
+
# clients from accidentally creating duplicate commitments.
|
421
|
+
#
|
422
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
423
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
424
|
+
class CreateInterconnectAttachmentRequest
|
425
|
+
include ::Google::Protobuf::MessageExts
|
426
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
427
|
+
end
|
428
|
+
|
429
|
+
# Message for deleting a InterconnectAttachment
|
430
|
+
# @!attribute [rw] name
|
431
|
+
# @return [::String]
|
432
|
+
# Required. Name of the resource
|
433
|
+
# @!attribute [rw] request_id
|
434
|
+
# @return [::String]
|
435
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
436
|
+
# request ID so that if you must retry your request, the server will know to
|
437
|
+
# ignore the request if it has already been completed. The server will
|
438
|
+
# guarantee that for at least 60 minutes after the first request.
|
439
|
+
#
|
440
|
+
# For example, consider a situation where you make an initial request and
|
441
|
+
# the request times out. If you make the request again with the same request
|
442
|
+
# ID, the server can check if original operation with the same request ID
|
443
|
+
# was received, and if so, will ignore the second request. This prevents
|
444
|
+
# clients from accidentally creating duplicate commitments.
|
445
|
+
#
|
446
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
447
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
448
|
+
class DeleteInterconnectAttachmentRequest
|
449
|
+
include ::Google::Protobuf::MessageExts
|
450
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
451
|
+
end
|
452
|
+
|
453
|
+
# Message for requesting list of Routers
|
454
|
+
# @!attribute [rw] parent
|
455
|
+
# @return [::String]
|
456
|
+
# Required. Parent value for ListRoutersRequest
|
457
|
+
# @!attribute [rw] page_size
|
458
|
+
# @return [::Integer]
|
459
|
+
# Requested page size. Server may return fewer items than requested.
|
460
|
+
# If unspecified, server will pick an appropriate default.
|
461
|
+
# @!attribute [rw] page_token
|
462
|
+
# @return [::String]
|
463
|
+
# A token identifying a page of results the server should return.
|
464
|
+
# @!attribute [rw] filter
|
465
|
+
# @return [::String]
|
466
|
+
# Filtering results
|
467
|
+
# @!attribute [rw] order_by
|
468
|
+
# @return [::String]
|
469
|
+
# Hint for how to order the results
|
470
|
+
class ListRoutersRequest
|
471
|
+
include ::Google::Protobuf::MessageExts
|
472
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
473
|
+
end
|
474
|
+
|
475
|
+
# Message for response to listing Routers
|
476
|
+
# @!attribute [rw] routers
|
477
|
+
# @return [::Array<::Google::Cloud::EdgeNetwork::V1::Router>]
|
478
|
+
# The list of Router
|
479
|
+
# @!attribute [rw] next_page_token
|
480
|
+
# @return [::String]
|
481
|
+
# A token identifying a page of results the server should return.
|
482
|
+
# @!attribute [rw] unreachable
|
483
|
+
# @return [::Array<::String>]
|
484
|
+
# Locations that could not be reached.
|
485
|
+
class ListRoutersResponse
|
486
|
+
include ::Google::Protobuf::MessageExts
|
487
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
488
|
+
end
|
489
|
+
|
490
|
+
# Message for getting a Router
|
491
|
+
# @!attribute [rw] name
|
492
|
+
# @return [::String]
|
493
|
+
# Required. Name of the resource
|
494
|
+
class GetRouterRequest
|
495
|
+
include ::Google::Protobuf::MessageExts
|
496
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
497
|
+
end
|
498
|
+
|
499
|
+
# Message for creating a Router
|
500
|
+
# @!attribute [rw] parent
|
501
|
+
# @return [::String]
|
502
|
+
# Required. Value for parent.
|
503
|
+
# @!attribute [rw] router_id
|
504
|
+
# @return [::String]
|
505
|
+
# Required. Id of the requesting object
|
506
|
+
# If auto-generating Id server-side, remove this field and
|
507
|
+
# router_id from the method_signature of Create RPC
|
508
|
+
# @!attribute [rw] router
|
509
|
+
# @return [::Google::Cloud::EdgeNetwork::V1::Router]
|
510
|
+
# Required. The resource being created
|
511
|
+
# @!attribute [rw] request_id
|
512
|
+
# @return [::String]
|
513
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
514
|
+
# request ID so that if you must retry your request, the server will know to
|
515
|
+
# ignore the request if it has already been completed. The server will
|
516
|
+
# guarantee that for at least 60 minutes since the first request.
|
517
|
+
#
|
518
|
+
# For example, consider a situation where you make an initial request and
|
519
|
+
# the request times out. If you make the request again with the same request
|
520
|
+
# ID, the server can check if original operation with the same request ID
|
521
|
+
# was received, and if so, will ignore the second request. This prevents
|
522
|
+
# clients from accidentally creating duplicate commitments.
|
523
|
+
#
|
524
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
525
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
526
|
+
class CreateRouterRequest
|
527
|
+
include ::Google::Protobuf::MessageExts
|
528
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
529
|
+
end
|
530
|
+
|
531
|
+
# Message for updating a Router
|
532
|
+
# @!attribute [rw] update_mask
|
533
|
+
# @return [::Google::Protobuf::FieldMask]
|
534
|
+
# Required. Field mask is used to specify the fields to be overwritten in the
|
535
|
+
# Router resource by the update.
|
536
|
+
# The fields specified in the update_mask are relative to the resource, not
|
537
|
+
# the full request. A field will be overwritten if it is in the mask. If the
|
538
|
+
# user does not provide a mask then all fields will be overwritten.
|
539
|
+
# @!attribute [rw] router
|
540
|
+
# @return [::Google::Cloud::EdgeNetwork::V1::Router]
|
541
|
+
# Required. The resource being updated
|
542
|
+
# @!attribute [rw] request_id
|
543
|
+
# @return [::String]
|
544
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
545
|
+
# request ID so that if you must retry your request, the server will know to
|
546
|
+
# ignore the request if it has already been completed. The server will
|
547
|
+
# guarantee that for at least 60 minutes since the first request.
|
548
|
+
#
|
549
|
+
# For example, consider a situation where you make an initial request and
|
550
|
+
# the request times out. If you make the request again with the same request
|
551
|
+
# ID, the server can check if original operation with the same request ID
|
552
|
+
# was received, and if so, will ignore the second request. This prevents
|
553
|
+
# clients from accidentally creating duplicate commitments.
|
554
|
+
#
|
555
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
556
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
557
|
+
class UpdateRouterRequest
|
558
|
+
include ::Google::Protobuf::MessageExts
|
559
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
560
|
+
end
|
561
|
+
|
562
|
+
# Message for deleting a Router
|
563
|
+
# @!attribute [rw] name
|
564
|
+
# @return [::String]
|
565
|
+
# Required. Name of the resource
|
566
|
+
# @!attribute [rw] request_id
|
567
|
+
# @return [::String]
|
568
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
569
|
+
# request ID so that if you must retry your request, the server will know to
|
570
|
+
# ignore the request if it has already been completed. The server will
|
571
|
+
# guarantee that for at least 60 minutes after the first request.
|
572
|
+
#
|
573
|
+
# For example, consider a situation where you make an initial request and
|
574
|
+
# the request times out. If you make the request again with the same request
|
575
|
+
# ID, the server can check if original operation with the same request ID
|
576
|
+
# was received, and if so, will ignore the second request. This prevents
|
577
|
+
# clients from accidentally creating duplicate commitments.
|
578
|
+
#
|
579
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
580
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
581
|
+
class DeleteRouterRequest
|
582
|
+
include ::Google::Protobuf::MessageExts
|
583
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
584
|
+
end
|
585
|
+
|
586
|
+
# Represents the metadata of the long-running operation.
|
587
|
+
# @!attribute [r] create_time
|
588
|
+
# @return [::Google::Protobuf::Timestamp]
|
589
|
+
# Output only. The time the operation was created.
|
590
|
+
# @!attribute [r] end_time
|
591
|
+
# @return [::Google::Protobuf::Timestamp]
|
592
|
+
# Output only. The time the operation finished running.
|
593
|
+
# @!attribute [r] target
|
594
|
+
# @return [::String]
|
595
|
+
# Output only. Server-defined resource path for the target of the operation.
|
596
|
+
# @!attribute [r] verb
|
597
|
+
# @return [::String]
|
598
|
+
# Output only. Name of the verb executed by the operation.
|
599
|
+
# @!attribute [r] status_message
|
600
|
+
# @return [::String]
|
601
|
+
# Output only. Human-readable status of the operation, if any.
|
602
|
+
# @!attribute [r] requested_cancellation
|
603
|
+
# @return [::Boolean]
|
604
|
+
# Output only. Identifies whether the user has requested cancellation
|
605
|
+
# of the operation. Operations that have been cancelled successfully
|
606
|
+
# have [Operation.error][] value with a
|
607
|
+
# {::Google::Rpc::Status#code google.rpc.Status.code} of 1, corresponding to
|
608
|
+
# `Code.CANCELLED`.
|
609
|
+
# @!attribute [r] api_version
|
610
|
+
# @return [::String]
|
611
|
+
# Output only. API version used to start the operation.
|
612
|
+
class OperationMetadata
|
613
|
+
include ::Google::Protobuf::MessageExts
|
614
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
615
|
+
end
|
616
|
+
|
617
|
+
# Message for requesting the diagnostics of a network within a specific zone.
|
618
|
+
# @!attribute [rw] name
|
619
|
+
# @return [::String]
|
620
|
+
# Required. The name of the network resource.
|
621
|
+
class DiagnoseNetworkRequest
|
622
|
+
include ::Google::Protobuf::MessageExts
|
623
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
624
|
+
end
|
625
|
+
|
626
|
+
# DiagnoseNetworkResponse contains the current status for a specific network.
|
627
|
+
# @!attribute [rw] update_time
|
628
|
+
# @return [::Google::Protobuf::Timestamp]
|
629
|
+
# The time when the network status was last updated.
|
630
|
+
# @!attribute [rw] result
|
631
|
+
# @return [::Google::Cloud::EdgeNetwork::V1::DiagnoseNetworkResponse::NetworkStatus]
|
632
|
+
# The network status of a specific network.
|
633
|
+
class DiagnoseNetworkResponse
|
634
|
+
include ::Google::Protobuf::MessageExts
|
635
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
636
|
+
|
637
|
+
# NetworkStatus has a list of status for the subnets under the current
|
638
|
+
# network.
|
639
|
+
# @!attribute [rw] subnet_status
|
640
|
+
# @return [::Array<::Google::Cloud::EdgeNetwork::V1::SubnetStatus>]
|
641
|
+
# A list of status for the subnets under the current network.
|
642
|
+
class NetworkStatus
|
643
|
+
include ::Google::Protobuf::MessageExts
|
644
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
645
|
+
end
|
646
|
+
end
|
647
|
+
|
648
|
+
# Message for requesting the diagnostics of an interconnect within a specific
|
649
|
+
# zone.
|
650
|
+
# @!attribute [rw] name
|
651
|
+
# @return [::String]
|
652
|
+
# Required. The name of the interconnect resource.
|
653
|
+
class DiagnoseInterconnectRequest
|
654
|
+
include ::Google::Protobuf::MessageExts
|
655
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
656
|
+
end
|
657
|
+
|
658
|
+
# DiagnoseInterconnectResponse contains the current diagnostics for a
|
659
|
+
# specific interconnect.
|
660
|
+
# @!attribute [rw] update_time
|
661
|
+
# @return [::Google::Protobuf::Timestamp]
|
662
|
+
# The time when the interconnect diagnostics was last updated.
|
663
|
+
# @!attribute [rw] result
|
664
|
+
# @return [::Google::Cloud::EdgeNetwork::V1::InterconnectDiagnostics]
|
665
|
+
# The network status of a specific interconnect.
|
666
|
+
class DiagnoseInterconnectResponse
|
667
|
+
include ::Google::Protobuf::MessageExts
|
668
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
669
|
+
end
|
670
|
+
|
671
|
+
# Message for requesting diagnositcs of a router within a specific zone.
|
672
|
+
# @!attribute [rw] name
|
673
|
+
# @return [::String]
|
674
|
+
# Required. The name of the router resource.
|
675
|
+
class DiagnoseRouterRequest
|
676
|
+
include ::Google::Protobuf::MessageExts
|
677
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
678
|
+
end
|
679
|
+
|
680
|
+
# DiagnoseRouterResponse contains the current status for a specific router.
|
681
|
+
# @!attribute [rw] update_time
|
682
|
+
# @return [::Google::Protobuf::Timestamp]
|
683
|
+
# The time when the router status was last updated.
|
684
|
+
# @!attribute [rw] result
|
685
|
+
# @return [::Google::Cloud::EdgeNetwork::V1::RouterStatus]
|
686
|
+
# The network status of a specific router.
|
687
|
+
class DiagnoseRouterResponse
|
688
|
+
include ::Google::Protobuf::MessageExts
|
689
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
690
|
+
end
|
691
|
+
|
692
|
+
# Message for initializing a specified zone
|
693
|
+
# @!attribute [rw] name
|
694
|
+
# @return [::String]
|
695
|
+
# Required. The name of the zone resource.
|
696
|
+
class InitializeZoneRequest
|
697
|
+
include ::Google::Protobuf::MessageExts
|
698
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
699
|
+
end
|
700
|
+
|
701
|
+
# The response of initializing a zone
|
702
|
+
class InitializeZoneResponse
|
703
|
+
include ::Google::Protobuf::MessageExts
|
704
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
705
|
+
end
|
706
|
+
end
|
707
|
+
end
|
708
|
+
end
|
709
|
+
end
|