aws-sdk-tnb 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-tnb/client.rb +1973 -0
- data/lib/aws-sdk-tnb/client_api.rb +1172 -0
- data/lib/aws-sdk-tnb/customizations.rb +0 -0
- data/lib/aws-sdk-tnb/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-tnb/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-tnb/endpoints.rb +477 -0
- data/lib/aws-sdk-tnb/errors.rb +134 -0
- data/lib/aws-sdk-tnb/plugins/endpoints.rb +134 -0
- data/lib/aws-sdk-tnb/resource.rb +26 -0
- data/lib/aws-sdk-tnb/types.rb +2397 -0
- data/lib/aws-sdk-tnb.rb +57 -0
- metadata +94 -0
@@ -0,0 +1,2397 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::Tnb
|
11
|
+
module Types
|
12
|
+
|
13
|
+
# Insufficient permissions to make request.
|
14
|
+
#
|
15
|
+
# @!attribute [rw] message
|
16
|
+
# @return [String]
|
17
|
+
#
|
18
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/AccessDeniedException AWS API Documentation
|
19
|
+
#
|
20
|
+
class AccessDeniedException < Struct.new(
|
21
|
+
:message)
|
22
|
+
SENSITIVE = []
|
23
|
+
include Aws::Structure
|
24
|
+
end
|
25
|
+
|
26
|
+
# @!attribute [rw] ns_lcm_op_occ_id
|
27
|
+
# The ID of a network operation occurrence.
|
28
|
+
# @return [String]
|
29
|
+
#
|
30
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/CancelSolNetworkOperationInput AWS API Documentation
|
31
|
+
#
|
32
|
+
class CancelSolNetworkOperationInput < Struct.new(
|
33
|
+
:ns_lcm_op_occ_id)
|
34
|
+
SENSITIVE = []
|
35
|
+
include Aws::Structure
|
36
|
+
end
|
37
|
+
|
38
|
+
# @!attribute [rw] tags
|
39
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
40
|
+
# Each tag consists of a key and an optional value. You can use tags
|
41
|
+
# to search and filter your resources or track your Amazon Web
|
42
|
+
# Services costs.
|
43
|
+
# @return [Hash<String,String>]
|
44
|
+
#
|
45
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/CreateSolFunctionPackageInput AWS API Documentation
|
46
|
+
#
|
47
|
+
class CreateSolFunctionPackageInput < Struct.new(
|
48
|
+
:tags)
|
49
|
+
SENSITIVE = [:tags]
|
50
|
+
include Aws::Structure
|
51
|
+
end
|
52
|
+
|
53
|
+
# @!attribute [rw] arn
|
54
|
+
# Function package ARN.
|
55
|
+
# @return [String]
|
56
|
+
#
|
57
|
+
# @!attribute [rw] id
|
58
|
+
# ID of the function package.
|
59
|
+
# @return [String]
|
60
|
+
#
|
61
|
+
# @!attribute [rw] onboarding_state
|
62
|
+
# Onboarding state of the function package.
|
63
|
+
# @return [String]
|
64
|
+
#
|
65
|
+
# @!attribute [rw] operational_state
|
66
|
+
# Operational state of the function package.
|
67
|
+
# @return [String]
|
68
|
+
#
|
69
|
+
# @!attribute [rw] tags
|
70
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
71
|
+
# Each tag consists of a key and an optional value. You can use tags
|
72
|
+
# to search and filter your resources or track your Amazon Web
|
73
|
+
# Services costs.
|
74
|
+
# @return [Hash<String,String>]
|
75
|
+
#
|
76
|
+
# @!attribute [rw] usage_state
|
77
|
+
# Usage state of the function package.
|
78
|
+
# @return [String]
|
79
|
+
#
|
80
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/CreateSolFunctionPackageOutput AWS API Documentation
|
81
|
+
#
|
82
|
+
class CreateSolFunctionPackageOutput < Struct.new(
|
83
|
+
:arn,
|
84
|
+
:id,
|
85
|
+
:onboarding_state,
|
86
|
+
:operational_state,
|
87
|
+
:tags,
|
88
|
+
:usage_state)
|
89
|
+
SENSITIVE = [:tags]
|
90
|
+
include Aws::Structure
|
91
|
+
end
|
92
|
+
|
93
|
+
# @!attribute [rw] ns_description
|
94
|
+
# Network instance description.
|
95
|
+
# @return [String]
|
96
|
+
#
|
97
|
+
# @!attribute [rw] ns_name
|
98
|
+
# Network instance name.
|
99
|
+
# @return [String]
|
100
|
+
#
|
101
|
+
# @!attribute [rw] nsd_info_id
|
102
|
+
# ID for network service descriptor.
|
103
|
+
# @return [String]
|
104
|
+
#
|
105
|
+
# @!attribute [rw] tags
|
106
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
107
|
+
# Each tag consists of a key and an optional value. You can use tags
|
108
|
+
# to search and filter your resources or track your Amazon Web
|
109
|
+
# Services costs.
|
110
|
+
# @return [Hash<String,String>]
|
111
|
+
#
|
112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/CreateSolNetworkInstanceInput AWS API Documentation
|
113
|
+
#
|
114
|
+
class CreateSolNetworkInstanceInput < Struct.new(
|
115
|
+
:ns_description,
|
116
|
+
:ns_name,
|
117
|
+
:nsd_info_id,
|
118
|
+
:tags)
|
119
|
+
SENSITIVE = [:tags]
|
120
|
+
include Aws::Structure
|
121
|
+
end
|
122
|
+
|
123
|
+
# @!attribute [rw] arn
|
124
|
+
# Network instance ARN.
|
125
|
+
# @return [String]
|
126
|
+
#
|
127
|
+
# @!attribute [rw] id
|
128
|
+
# Network instance ID.
|
129
|
+
# @return [String]
|
130
|
+
#
|
131
|
+
# @!attribute [rw] ns_instance_name
|
132
|
+
# Network instance name.
|
133
|
+
# @return [String]
|
134
|
+
#
|
135
|
+
# @!attribute [rw] nsd_info_id
|
136
|
+
# Network service descriptor ID.
|
137
|
+
# @return [String]
|
138
|
+
#
|
139
|
+
# @!attribute [rw] tags
|
140
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
141
|
+
# Each tag consists of a key and an optional value. You can use tags
|
142
|
+
# to search and filter your resources or track your Amazon Web
|
143
|
+
# Services costs.
|
144
|
+
# @return [Hash<String,String>]
|
145
|
+
#
|
146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/CreateSolNetworkInstanceOutput AWS API Documentation
|
147
|
+
#
|
148
|
+
class CreateSolNetworkInstanceOutput < Struct.new(
|
149
|
+
:arn,
|
150
|
+
:id,
|
151
|
+
:ns_instance_name,
|
152
|
+
:nsd_info_id,
|
153
|
+
:tags)
|
154
|
+
SENSITIVE = [:tags]
|
155
|
+
include Aws::Structure
|
156
|
+
end
|
157
|
+
|
158
|
+
# @!attribute [rw] tags
|
159
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
160
|
+
# Each tag consists of a key and an optional value. You can use tags
|
161
|
+
# to search and filter your resources or track your Amazon Web
|
162
|
+
# Services costs.
|
163
|
+
# @return [Hash<String,String>]
|
164
|
+
#
|
165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/CreateSolNetworkPackageInput AWS API Documentation
|
166
|
+
#
|
167
|
+
class CreateSolNetworkPackageInput < Struct.new(
|
168
|
+
:tags)
|
169
|
+
SENSITIVE = [:tags]
|
170
|
+
include Aws::Structure
|
171
|
+
end
|
172
|
+
|
173
|
+
# @!attribute [rw] arn
|
174
|
+
# Network package ARN.
|
175
|
+
# @return [String]
|
176
|
+
#
|
177
|
+
# @!attribute [rw] id
|
178
|
+
# ID of the network package.
|
179
|
+
# @return [String]
|
180
|
+
#
|
181
|
+
# @!attribute [rw] nsd_onboarding_state
|
182
|
+
# Onboarding state of the network service descriptor in the network
|
183
|
+
# package.
|
184
|
+
# @return [String]
|
185
|
+
#
|
186
|
+
# @!attribute [rw] nsd_operational_state
|
187
|
+
# Operational state of the network service descriptor in the network
|
188
|
+
# package.
|
189
|
+
# @return [String]
|
190
|
+
#
|
191
|
+
# @!attribute [rw] nsd_usage_state
|
192
|
+
# Usage state of the network service descriptor in the network
|
193
|
+
# package.
|
194
|
+
# @return [String]
|
195
|
+
#
|
196
|
+
# @!attribute [rw] tags
|
197
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
198
|
+
# Each tag consists of a key and an optional value. You can use tags
|
199
|
+
# to search and filter your resources or track your Amazon Web
|
200
|
+
# Services costs.
|
201
|
+
# @return [Hash<String,String>]
|
202
|
+
#
|
203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/CreateSolNetworkPackageOutput AWS API Documentation
|
204
|
+
#
|
205
|
+
class CreateSolNetworkPackageOutput < Struct.new(
|
206
|
+
:arn,
|
207
|
+
:id,
|
208
|
+
:nsd_onboarding_state,
|
209
|
+
:nsd_operational_state,
|
210
|
+
:nsd_usage_state,
|
211
|
+
:tags)
|
212
|
+
SENSITIVE = [:tags]
|
213
|
+
include Aws::Structure
|
214
|
+
end
|
215
|
+
|
216
|
+
# @!attribute [rw] vnf_pkg_id
|
217
|
+
# ID of the function package.
|
218
|
+
# @return [String]
|
219
|
+
#
|
220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/DeleteSolFunctionPackageInput AWS API Documentation
|
221
|
+
#
|
222
|
+
class DeleteSolFunctionPackageInput < Struct.new(
|
223
|
+
:vnf_pkg_id)
|
224
|
+
SENSITIVE = []
|
225
|
+
include Aws::Structure
|
226
|
+
end
|
227
|
+
|
228
|
+
# @!attribute [rw] ns_instance_id
|
229
|
+
# Network instance ID.
|
230
|
+
# @return [String]
|
231
|
+
#
|
232
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/DeleteSolNetworkInstanceInput AWS API Documentation
|
233
|
+
#
|
234
|
+
class DeleteSolNetworkInstanceInput < Struct.new(
|
235
|
+
:ns_instance_id)
|
236
|
+
SENSITIVE = []
|
237
|
+
include Aws::Structure
|
238
|
+
end
|
239
|
+
|
240
|
+
# @!attribute [rw] nsd_info_id
|
241
|
+
# ID of the network service descriptor in the network package.
|
242
|
+
# @return [String]
|
243
|
+
#
|
244
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/DeleteSolNetworkPackageInput AWS API Documentation
|
245
|
+
#
|
246
|
+
class DeleteSolNetworkPackageInput < Struct.new(
|
247
|
+
:nsd_info_id)
|
248
|
+
SENSITIVE = []
|
249
|
+
include Aws::Structure
|
250
|
+
end
|
251
|
+
|
252
|
+
# Provides error information.
|
253
|
+
#
|
254
|
+
# @!attribute [rw] cause
|
255
|
+
# Error cause.
|
256
|
+
# @return [String]
|
257
|
+
#
|
258
|
+
# @!attribute [rw] details
|
259
|
+
# Error details.
|
260
|
+
# @return [String]
|
261
|
+
#
|
262
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ErrorInfo AWS API Documentation
|
263
|
+
#
|
264
|
+
class ErrorInfo < Struct.new(
|
265
|
+
:cause,
|
266
|
+
:details)
|
267
|
+
SENSITIVE = []
|
268
|
+
include Aws::Structure
|
269
|
+
end
|
270
|
+
|
271
|
+
# Metadata for function package artifacts.
|
272
|
+
#
|
273
|
+
# Artifacts are the contents of the package descriptor file and the
|
274
|
+
# state of the package.
|
275
|
+
#
|
276
|
+
# @!attribute [rw] overrides
|
277
|
+
# Lists of function package overrides.
|
278
|
+
# @return [Array<Types::ToscaOverride>]
|
279
|
+
#
|
280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/FunctionArtifactMeta AWS API Documentation
|
281
|
+
#
|
282
|
+
class FunctionArtifactMeta < Struct.new(
|
283
|
+
:overrides)
|
284
|
+
SENSITIVE = []
|
285
|
+
include Aws::Structure
|
286
|
+
end
|
287
|
+
|
288
|
+
# @!attribute [rw] vnf_instance_id
|
289
|
+
# ID of the network function.
|
290
|
+
# @return [String]
|
291
|
+
#
|
292
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolFunctionInstanceInput AWS API Documentation
|
293
|
+
#
|
294
|
+
class GetSolFunctionInstanceInput < Struct.new(
|
295
|
+
:vnf_instance_id)
|
296
|
+
SENSITIVE = []
|
297
|
+
include Aws::Structure
|
298
|
+
end
|
299
|
+
|
300
|
+
# The metadata of a network function instance.
|
301
|
+
#
|
302
|
+
# A network function instance is a function in a function package .
|
303
|
+
#
|
304
|
+
# @!attribute [rw] created_at
|
305
|
+
# The date that the resource was created.
|
306
|
+
# @return [Time]
|
307
|
+
#
|
308
|
+
# @!attribute [rw] last_modified
|
309
|
+
# The date that the resource was last modified.
|
310
|
+
# @return [Time]
|
311
|
+
#
|
312
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolFunctionInstanceMetadata AWS API Documentation
|
313
|
+
#
|
314
|
+
class GetSolFunctionInstanceMetadata < Struct.new(
|
315
|
+
:created_at,
|
316
|
+
:last_modified)
|
317
|
+
SENSITIVE = []
|
318
|
+
include Aws::Structure
|
319
|
+
end
|
320
|
+
|
321
|
+
# @!attribute [rw] arn
|
322
|
+
# Network function instance ARN.
|
323
|
+
# @return [String]
|
324
|
+
#
|
325
|
+
# @!attribute [rw] id
|
326
|
+
# Network function instance ID.
|
327
|
+
# @return [String]
|
328
|
+
#
|
329
|
+
# @!attribute [rw] instantiated_vnf_info
|
330
|
+
# Information about the network function.
|
331
|
+
#
|
332
|
+
# A network function instance is a function in a function package .
|
333
|
+
# @return [Types::GetSolVnfInfo]
|
334
|
+
#
|
335
|
+
# @!attribute [rw] instantiation_state
|
336
|
+
# Network function instantiation state.
|
337
|
+
# @return [String]
|
338
|
+
#
|
339
|
+
# @!attribute [rw] metadata
|
340
|
+
# The metadata of a network function instance.
|
341
|
+
#
|
342
|
+
# A network function instance is a function in a function package .
|
343
|
+
# @return [Types::GetSolFunctionInstanceMetadata]
|
344
|
+
#
|
345
|
+
# @!attribute [rw] ns_instance_id
|
346
|
+
# Network instance ID.
|
347
|
+
# @return [String]
|
348
|
+
#
|
349
|
+
# @!attribute [rw] tags
|
350
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
351
|
+
# Each tag consists of a key and an optional value. You can use tags
|
352
|
+
# to search and filter your resources or track your Amazon Web
|
353
|
+
# Services costs.
|
354
|
+
# @return [Hash<String,String>]
|
355
|
+
#
|
356
|
+
# @!attribute [rw] vnf_pkg_id
|
357
|
+
# Function package ID.
|
358
|
+
# @return [String]
|
359
|
+
#
|
360
|
+
# @!attribute [rw] vnf_product_name
|
361
|
+
# Network function product name.
|
362
|
+
# @return [String]
|
363
|
+
#
|
364
|
+
# @!attribute [rw] vnf_provider
|
365
|
+
# Network function provider.
|
366
|
+
# @return [String]
|
367
|
+
#
|
368
|
+
# @!attribute [rw] vnfd_id
|
369
|
+
# Function package descriptor ID.
|
370
|
+
# @return [String]
|
371
|
+
#
|
372
|
+
# @!attribute [rw] vnfd_version
|
373
|
+
# Function package descriptor version.
|
374
|
+
# @return [String]
|
375
|
+
#
|
376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolFunctionInstanceOutput AWS API Documentation
|
377
|
+
#
|
378
|
+
class GetSolFunctionInstanceOutput < Struct.new(
|
379
|
+
:arn,
|
380
|
+
:id,
|
381
|
+
:instantiated_vnf_info,
|
382
|
+
:instantiation_state,
|
383
|
+
:metadata,
|
384
|
+
:ns_instance_id,
|
385
|
+
:tags,
|
386
|
+
:vnf_pkg_id,
|
387
|
+
:vnf_product_name,
|
388
|
+
:vnf_provider,
|
389
|
+
:vnfd_id,
|
390
|
+
:vnfd_version)
|
391
|
+
SENSITIVE = [:tags]
|
392
|
+
include Aws::Structure
|
393
|
+
end
|
394
|
+
|
395
|
+
# @!attribute [rw] accept
|
396
|
+
# The format of the package that you want to download from the
|
397
|
+
# function packages.
|
398
|
+
# @return [String]
|
399
|
+
#
|
400
|
+
# @!attribute [rw] vnf_pkg_id
|
401
|
+
# ID of the function package.
|
402
|
+
# @return [String]
|
403
|
+
#
|
404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolFunctionPackageContentInput AWS API Documentation
|
405
|
+
#
|
406
|
+
class GetSolFunctionPackageContentInput < Struct.new(
|
407
|
+
:accept,
|
408
|
+
:vnf_pkg_id)
|
409
|
+
SENSITIVE = []
|
410
|
+
include Aws::Structure
|
411
|
+
end
|
412
|
+
|
413
|
+
# @!attribute [rw] content_type
|
414
|
+
# Indicates the media type of the resource.
|
415
|
+
# @return [String]
|
416
|
+
#
|
417
|
+
# @!attribute [rw] package_content
|
418
|
+
# Contents of the function package.
|
419
|
+
# @return [String]
|
420
|
+
#
|
421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolFunctionPackageContentOutput AWS API Documentation
|
422
|
+
#
|
423
|
+
class GetSolFunctionPackageContentOutput < Struct.new(
|
424
|
+
:content_type,
|
425
|
+
:package_content)
|
426
|
+
SENSITIVE = []
|
427
|
+
include Aws::Structure
|
428
|
+
end
|
429
|
+
|
430
|
+
# @!attribute [rw] accept
|
431
|
+
# Indicates which content types, expressed as MIME types, the client
|
432
|
+
# is able to understand.
|
433
|
+
# @return [String]
|
434
|
+
#
|
435
|
+
# @!attribute [rw] vnf_pkg_id
|
436
|
+
# ID of the function package.
|
437
|
+
# @return [String]
|
438
|
+
#
|
439
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolFunctionPackageDescriptorInput AWS API Documentation
|
440
|
+
#
|
441
|
+
class GetSolFunctionPackageDescriptorInput < Struct.new(
|
442
|
+
:accept,
|
443
|
+
:vnf_pkg_id)
|
444
|
+
SENSITIVE = []
|
445
|
+
include Aws::Structure
|
446
|
+
end
|
447
|
+
|
448
|
+
# @!attribute [rw] content_type
|
449
|
+
# Indicates the media type of the resource.
|
450
|
+
# @return [String]
|
451
|
+
#
|
452
|
+
# @!attribute [rw] vnfd
|
453
|
+
# Contents of the function package descriptor.
|
454
|
+
# @return [String]
|
455
|
+
#
|
456
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolFunctionPackageDescriptorOutput AWS API Documentation
|
457
|
+
#
|
458
|
+
class GetSolFunctionPackageDescriptorOutput < Struct.new(
|
459
|
+
:content_type,
|
460
|
+
:vnfd)
|
461
|
+
SENSITIVE = []
|
462
|
+
include Aws::Structure
|
463
|
+
end
|
464
|
+
|
465
|
+
# @!attribute [rw] vnf_pkg_id
|
466
|
+
# ID of the function package.
|
467
|
+
# @return [String]
|
468
|
+
#
|
469
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolFunctionPackageInput AWS API Documentation
|
470
|
+
#
|
471
|
+
class GetSolFunctionPackageInput < Struct.new(
|
472
|
+
:vnf_pkg_id)
|
473
|
+
SENSITIVE = []
|
474
|
+
include Aws::Structure
|
475
|
+
end
|
476
|
+
|
477
|
+
# Metadata related to the function package.
|
478
|
+
#
|
479
|
+
# A function package is a .zip file in CSAR (Cloud Service Archive)
|
480
|
+
# format that contains a network function (an ETSI standard
|
481
|
+
# telecommunication application) and function package descriptor that
|
482
|
+
# uses the TOSCA standard to describe how the network functions should
|
483
|
+
# run on your network.
|
484
|
+
#
|
485
|
+
# @!attribute [rw] created_at
|
486
|
+
# The date that the resource was created.
|
487
|
+
# @return [Time]
|
488
|
+
#
|
489
|
+
# @!attribute [rw] last_modified
|
490
|
+
# The date that the resource was last modified.
|
491
|
+
# @return [Time]
|
492
|
+
#
|
493
|
+
# @!attribute [rw] vnfd
|
494
|
+
# Metadata related to the function package descriptor of the function
|
495
|
+
# package.
|
496
|
+
# @return [Types::FunctionArtifactMeta]
|
497
|
+
#
|
498
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolFunctionPackageMetadata AWS API Documentation
|
499
|
+
#
|
500
|
+
class GetSolFunctionPackageMetadata < Struct.new(
|
501
|
+
:created_at,
|
502
|
+
:last_modified,
|
503
|
+
:vnfd)
|
504
|
+
SENSITIVE = []
|
505
|
+
include Aws::Structure
|
506
|
+
end
|
507
|
+
|
508
|
+
# @!attribute [rw] arn
|
509
|
+
# Function package ARN.
|
510
|
+
# @return [String]
|
511
|
+
#
|
512
|
+
# @!attribute [rw] id
|
513
|
+
# Function package ID.
|
514
|
+
# @return [String]
|
515
|
+
#
|
516
|
+
# @!attribute [rw] metadata
|
517
|
+
# Metadata related to the function package.
|
518
|
+
#
|
519
|
+
# A function package is a .zip file in CSAR (Cloud Service Archive)
|
520
|
+
# format that contains a network function (an ETSI standard
|
521
|
+
# telecommunication application) and function package descriptor that
|
522
|
+
# uses the TOSCA standard to describe how the network functions should
|
523
|
+
# run on your network.
|
524
|
+
# @return [Types::GetSolFunctionPackageMetadata]
|
525
|
+
#
|
526
|
+
# @!attribute [rw] onboarding_state
|
527
|
+
# Function package onboarding state.
|
528
|
+
# @return [String]
|
529
|
+
#
|
530
|
+
# @!attribute [rw] operational_state
|
531
|
+
# Function package operational state.
|
532
|
+
# @return [String]
|
533
|
+
#
|
534
|
+
# @!attribute [rw] tags
|
535
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
536
|
+
# Each tag consists of a key and an optional value. You can use tags
|
537
|
+
# to search and filter your resources or track your Amazon Web
|
538
|
+
# Services costs.
|
539
|
+
# @return [Hash<String,String>]
|
540
|
+
#
|
541
|
+
# @!attribute [rw] usage_state
|
542
|
+
# Function package usage state.
|
543
|
+
# @return [String]
|
544
|
+
#
|
545
|
+
# @!attribute [rw] vnf_product_name
|
546
|
+
# Network function product name.
|
547
|
+
# @return [String]
|
548
|
+
#
|
549
|
+
# @!attribute [rw] vnf_provider
|
550
|
+
# Network function provider.
|
551
|
+
# @return [String]
|
552
|
+
#
|
553
|
+
# @!attribute [rw] vnfd_id
|
554
|
+
# Function package descriptor ID.
|
555
|
+
# @return [String]
|
556
|
+
#
|
557
|
+
# @!attribute [rw] vnfd_version
|
558
|
+
# Function package descriptor version.
|
559
|
+
# @return [String]
|
560
|
+
#
|
561
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolFunctionPackageOutput AWS API Documentation
|
562
|
+
#
|
563
|
+
class GetSolFunctionPackageOutput < Struct.new(
|
564
|
+
:arn,
|
565
|
+
:id,
|
566
|
+
:metadata,
|
567
|
+
:onboarding_state,
|
568
|
+
:operational_state,
|
569
|
+
:tags,
|
570
|
+
:usage_state,
|
571
|
+
:vnf_product_name,
|
572
|
+
:vnf_provider,
|
573
|
+
:vnfd_id,
|
574
|
+
:vnfd_version)
|
575
|
+
SENSITIVE = [:tags]
|
576
|
+
include Aws::Structure
|
577
|
+
end
|
578
|
+
|
579
|
+
# Information about a network function.
|
580
|
+
#
|
581
|
+
# A network instance is a single network created in Amazon Web Services
|
582
|
+
# TNB that can be deployed and on which life-cycle operations (like
|
583
|
+
# terminate, update, and delete) can be performed.
|
584
|
+
#
|
585
|
+
# @!attribute [rw] vnf_state
|
586
|
+
# State of the network function.
|
587
|
+
# @return [String]
|
588
|
+
#
|
589
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolInstantiatedVnfInfo AWS API Documentation
|
590
|
+
#
|
591
|
+
class GetSolInstantiatedVnfInfo < Struct.new(
|
592
|
+
:vnf_state)
|
593
|
+
SENSITIVE = []
|
594
|
+
include Aws::Structure
|
595
|
+
end
|
596
|
+
|
597
|
+
# @!attribute [rw] ns_instance_id
|
598
|
+
# ID of the network instance.
|
599
|
+
# @return [String]
|
600
|
+
#
|
601
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkInstanceInput AWS API Documentation
|
602
|
+
#
|
603
|
+
class GetSolNetworkInstanceInput < Struct.new(
|
604
|
+
:ns_instance_id)
|
605
|
+
SENSITIVE = []
|
606
|
+
include Aws::Structure
|
607
|
+
end
|
608
|
+
|
609
|
+
# The metadata of a network instance.
|
610
|
+
#
|
611
|
+
# A network instance is a single network created in Amazon Web Services
|
612
|
+
# TNB that can be deployed and on which life-cycle operations (like
|
613
|
+
# terminate, update, and delete) can be performed.
|
614
|
+
#
|
615
|
+
# @!attribute [rw] created_at
|
616
|
+
# The date that the resource was created.
|
617
|
+
# @return [Time]
|
618
|
+
#
|
619
|
+
# @!attribute [rw] last_modified
|
620
|
+
# The date that the resource was last modified.
|
621
|
+
# @return [Time]
|
622
|
+
#
|
623
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkInstanceMetadata AWS API Documentation
|
624
|
+
#
|
625
|
+
class GetSolNetworkInstanceMetadata < Struct.new(
|
626
|
+
:created_at,
|
627
|
+
:last_modified)
|
628
|
+
SENSITIVE = []
|
629
|
+
include Aws::Structure
|
630
|
+
end
|
631
|
+
|
632
|
+
# @!attribute [rw] arn
|
633
|
+
# Network instance ARN.
|
634
|
+
# @return [String]
|
635
|
+
#
|
636
|
+
# @!attribute [rw] id
|
637
|
+
# Network instance ID.
|
638
|
+
# @return [String]
|
639
|
+
#
|
640
|
+
# @!attribute [rw] lcm_op_info
|
641
|
+
# Lifecycle management operation details on the network instance.
|
642
|
+
#
|
643
|
+
# Lifecycle management operations are deploy, update, or delete
|
644
|
+
# operations.
|
645
|
+
# @return [Types::LcmOperationInfo]
|
646
|
+
#
|
647
|
+
# @!attribute [rw] metadata
|
648
|
+
# The metadata of a network instance.
|
649
|
+
#
|
650
|
+
# A network instance is a single network created in Amazon Web
|
651
|
+
# Services TNB that can be deployed and on which life-cycle operations
|
652
|
+
# (like terminate, update, and delete) can be performed.
|
653
|
+
# @return [Types::GetSolNetworkInstanceMetadata]
|
654
|
+
#
|
655
|
+
# @!attribute [rw] ns_instance_description
|
656
|
+
# Network instance description.
|
657
|
+
# @return [String]
|
658
|
+
#
|
659
|
+
# @!attribute [rw] ns_instance_name
|
660
|
+
# Network instance name.
|
661
|
+
# @return [String]
|
662
|
+
#
|
663
|
+
# @!attribute [rw] ns_state
|
664
|
+
# Network instance state.
|
665
|
+
# @return [String]
|
666
|
+
#
|
667
|
+
# @!attribute [rw] nsd_id
|
668
|
+
# Network service descriptor ID.
|
669
|
+
# @return [String]
|
670
|
+
#
|
671
|
+
# @!attribute [rw] nsd_info_id
|
672
|
+
# Network service descriptor info ID.
|
673
|
+
# @return [String]
|
674
|
+
#
|
675
|
+
# @!attribute [rw] tags
|
676
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
677
|
+
# Each tag consists of a key and an optional value. You can use tags
|
678
|
+
# to search and filter your resources or track your Amazon Web
|
679
|
+
# Services costs.
|
680
|
+
# @return [Hash<String,String>]
|
681
|
+
#
|
682
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkInstanceOutput AWS API Documentation
|
683
|
+
#
|
684
|
+
class GetSolNetworkInstanceOutput < Struct.new(
|
685
|
+
:arn,
|
686
|
+
:id,
|
687
|
+
:lcm_op_info,
|
688
|
+
:metadata,
|
689
|
+
:ns_instance_description,
|
690
|
+
:ns_instance_name,
|
691
|
+
:ns_state,
|
692
|
+
:nsd_id,
|
693
|
+
:nsd_info_id,
|
694
|
+
:tags)
|
695
|
+
SENSITIVE = [:tags]
|
696
|
+
include Aws::Structure
|
697
|
+
end
|
698
|
+
|
699
|
+
# @!attribute [rw] ns_lcm_op_occ_id
|
700
|
+
# The identifier of the operation occurrence.
|
701
|
+
# @return [String]
|
702
|
+
#
|
703
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkOperationInput AWS API Documentation
|
704
|
+
#
|
705
|
+
class GetSolNetworkOperationInput < Struct.new(
|
706
|
+
:ns_lcm_op_occ_id)
|
707
|
+
SENSITIVE = []
|
708
|
+
include Aws::Structure
|
709
|
+
end
|
710
|
+
|
711
|
+
# Metadata related to a network operation occurence.
|
712
|
+
#
|
713
|
+
# A network operation is any operation that is done to your network,
|
714
|
+
# such as network instance instantiation or termination.
|
715
|
+
#
|
716
|
+
# @!attribute [rw] created_at
|
717
|
+
# The date that the resource was created.
|
718
|
+
# @return [Time]
|
719
|
+
#
|
720
|
+
# @!attribute [rw] last_modified
|
721
|
+
# The date that the resource was last modified.
|
722
|
+
# @return [Time]
|
723
|
+
#
|
724
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkOperationMetadata AWS API Documentation
|
725
|
+
#
|
726
|
+
class GetSolNetworkOperationMetadata < Struct.new(
|
727
|
+
:created_at,
|
728
|
+
:last_modified)
|
729
|
+
SENSITIVE = []
|
730
|
+
include Aws::Structure
|
731
|
+
end
|
732
|
+
|
733
|
+
# @!attribute [rw] arn
|
734
|
+
# Network operation ARN.
|
735
|
+
# @return [String]
|
736
|
+
#
|
737
|
+
# @!attribute [rw] error
|
738
|
+
# Error related to this specific network operation occurence.
|
739
|
+
# @return [Types::ProblemDetails]
|
740
|
+
#
|
741
|
+
# @!attribute [rw] id
|
742
|
+
# ID of this network operation occurrence.
|
743
|
+
# @return [String]
|
744
|
+
#
|
745
|
+
# @!attribute [rw] lcm_operation_type
|
746
|
+
# Type of the operation represented by this occurrence.
|
747
|
+
# @return [String]
|
748
|
+
#
|
749
|
+
# @!attribute [rw] metadata
|
750
|
+
# Metadata of this network operation occurrence.
|
751
|
+
# @return [Types::GetSolNetworkOperationMetadata]
|
752
|
+
#
|
753
|
+
# @!attribute [rw] ns_instance_id
|
754
|
+
# ID of the network operation instance.
|
755
|
+
# @return [String]
|
756
|
+
#
|
757
|
+
# @!attribute [rw] operation_state
|
758
|
+
# The state of the network operation.
|
759
|
+
# @return [String]
|
760
|
+
#
|
761
|
+
# @!attribute [rw] tags
|
762
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
763
|
+
# Each tag consists of a key and an optional value. You can use tags
|
764
|
+
# to search and filter your resources or track your Amazon Web
|
765
|
+
# Services costs.
|
766
|
+
# @return [Hash<String,String>]
|
767
|
+
#
|
768
|
+
# @!attribute [rw] tasks
|
769
|
+
# All tasks associated with this operation occurrence.
|
770
|
+
# @return [Array<Types::GetSolNetworkOperationTaskDetails>]
|
771
|
+
#
|
772
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkOperationOutput AWS API Documentation
|
773
|
+
#
|
774
|
+
class GetSolNetworkOperationOutput < Struct.new(
|
775
|
+
:arn,
|
776
|
+
:error,
|
777
|
+
:id,
|
778
|
+
:lcm_operation_type,
|
779
|
+
:metadata,
|
780
|
+
:ns_instance_id,
|
781
|
+
:operation_state,
|
782
|
+
:tags,
|
783
|
+
:tasks)
|
784
|
+
SENSITIVE = [:tags]
|
785
|
+
include Aws::Structure
|
786
|
+
end
|
787
|
+
|
788
|
+
# Gets the details of a network operation.
|
789
|
+
#
|
790
|
+
# A network operation is any operation that is done to your network,
|
791
|
+
# such as network instance instantiation or termination.
|
792
|
+
#
|
793
|
+
# @!attribute [rw] task_context
|
794
|
+
# Context for the network operation task.
|
795
|
+
# @return [Hash<String,String>]
|
796
|
+
#
|
797
|
+
# @!attribute [rw] task_end_time
|
798
|
+
# Task end time.
|
799
|
+
# @return [Time]
|
800
|
+
#
|
801
|
+
# @!attribute [rw] task_error_details
|
802
|
+
# Task error details.
|
803
|
+
# @return [Types::ErrorInfo]
|
804
|
+
#
|
805
|
+
# @!attribute [rw] task_name
|
806
|
+
# Task name.
|
807
|
+
# @return [String]
|
808
|
+
#
|
809
|
+
# @!attribute [rw] task_start_time
|
810
|
+
# Task start time.
|
811
|
+
# @return [Time]
|
812
|
+
#
|
813
|
+
# @!attribute [rw] task_status
|
814
|
+
# Task status.
|
815
|
+
# @return [String]
|
816
|
+
#
|
817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkOperationTaskDetails AWS API Documentation
|
818
|
+
#
|
819
|
+
class GetSolNetworkOperationTaskDetails < Struct.new(
|
820
|
+
:task_context,
|
821
|
+
:task_end_time,
|
822
|
+
:task_error_details,
|
823
|
+
:task_name,
|
824
|
+
:task_start_time,
|
825
|
+
:task_status)
|
826
|
+
SENSITIVE = []
|
827
|
+
include Aws::Structure
|
828
|
+
end
|
829
|
+
|
830
|
+
# @!attribute [rw] accept
|
831
|
+
# The format of the package you want to download from the network
|
832
|
+
# package.
|
833
|
+
# @return [String]
|
834
|
+
#
|
835
|
+
# @!attribute [rw] nsd_info_id
|
836
|
+
# ID of the network service descriptor in the network package.
|
837
|
+
# @return [String]
|
838
|
+
#
|
839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkPackageContentInput AWS API Documentation
|
840
|
+
#
|
841
|
+
class GetSolNetworkPackageContentInput < Struct.new(
|
842
|
+
:accept,
|
843
|
+
:nsd_info_id)
|
844
|
+
SENSITIVE = []
|
845
|
+
include Aws::Structure
|
846
|
+
end
|
847
|
+
|
848
|
+
# @!attribute [rw] content_type
|
849
|
+
# Indicates the media type of the resource.
|
850
|
+
# @return [String]
|
851
|
+
#
|
852
|
+
# @!attribute [rw] nsd_content
|
853
|
+
# Content of the network service descriptor in the network package.
|
854
|
+
# @return [String]
|
855
|
+
#
|
856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkPackageContentOutput AWS API Documentation
|
857
|
+
#
|
858
|
+
class GetSolNetworkPackageContentOutput < Struct.new(
|
859
|
+
:content_type,
|
860
|
+
:nsd_content)
|
861
|
+
SENSITIVE = []
|
862
|
+
include Aws::Structure
|
863
|
+
end
|
864
|
+
|
865
|
+
# @!attribute [rw] nsd_info_id
|
866
|
+
# ID of the network service descriptor in the network package.
|
867
|
+
# @return [String]
|
868
|
+
#
|
869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkPackageDescriptorInput AWS API Documentation
|
870
|
+
#
|
871
|
+
class GetSolNetworkPackageDescriptorInput < Struct.new(
|
872
|
+
:nsd_info_id)
|
873
|
+
SENSITIVE = []
|
874
|
+
include Aws::Structure
|
875
|
+
end
|
876
|
+
|
877
|
+
# @!attribute [rw] content_type
|
878
|
+
# Indicates the media type of the resource.
|
879
|
+
# @return [String]
|
880
|
+
#
|
881
|
+
# @!attribute [rw] nsd
|
882
|
+
# Contents of the network service descriptor in the network package.
|
883
|
+
# @return [String]
|
884
|
+
#
|
885
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkPackageDescriptorOutput AWS API Documentation
|
886
|
+
#
|
887
|
+
class GetSolNetworkPackageDescriptorOutput < Struct.new(
|
888
|
+
:content_type,
|
889
|
+
:nsd)
|
890
|
+
SENSITIVE = []
|
891
|
+
include Aws::Structure
|
892
|
+
end
|
893
|
+
|
894
|
+
# @!attribute [rw] nsd_info_id
|
895
|
+
# ID of the network service descriptor in the network package.
|
896
|
+
# @return [String]
|
897
|
+
#
|
898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkPackageInput AWS API Documentation
|
899
|
+
#
|
900
|
+
class GetSolNetworkPackageInput < Struct.new(
|
901
|
+
:nsd_info_id)
|
902
|
+
SENSITIVE = []
|
903
|
+
include Aws::Structure
|
904
|
+
end
|
905
|
+
|
906
|
+
# Metadata associated with a network package.
|
907
|
+
#
|
908
|
+
# A network package is a .zip file in CSAR (Cloud Service Archive)
|
909
|
+
# format defines the function packages you want to deploy and the Amazon
|
910
|
+
# Web Services infrastructure you want to deploy them on.
|
911
|
+
#
|
912
|
+
# @!attribute [rw] created_at
|
913
|
+
# The date that the resource was created.
|
914
|
+
# @return [Time]
|
915
|
+
#
|
916
|
+
# @!attribute [rw] last_modified
|
917
|
+
# The date that the resource was last modified.
|
918
|
+
# @return [Time]
|
919
|
+
#
|
920
|
+
# @!attribute [rw] nsd
|
921
|
+
# Metadata related to the onboarded network service descriptor in the
|
922
|
+
# network package.
|
923
|
+
# @return [Types::NetworkArtifactMeta]
|
924
|
+
#
|
925
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkPackageMetadata AWS API Documentation
|
926
|
+
#
|
927
|
+
class GetSolNetworkPackageMetadata < Struct.new(
|
928
|
+
:created_at,
|
929
|
+
:last_modified,
|
930
|
+
:nsd)
|
931
|
+
SENSITIVE = []
|
932
|
+
include Aws::Structure
|
933
|
+
end
|
934
|
+
|
935
|
+
# @!attribute [rw] arn
|
936
|
+
# Network package ARN.
|
937
|
+
# @return [String]
|
938
|
+
#
|
939
|
+
# @!attribute [rw] id
|
940
|
+
# Network package ID.
|
941
|
+
# @return [String]
|
942
|
+
#
|
943
|
+
# @!attribute [rw] metadata
|
944
|
+
# Metadata associated with a network package.
|
945
|
+
#
|
946
|
+
# A network package is a .zip file in CSAR (Cloud Service Archive)
|
947
|
+
# format defines the function packages you want to deploy and the
|
948
|
+
# Amazon Web Services infrastructure you want to deploy them on.
|
949
|
+
# @return [Types::GetSolNetworkPackageMetadata]
|
950
|
+
#
|
951
|
+
# @!attribute [rw] nsd_id
|
952
|
+
# Network service descriptor ID.
|
953
|
+
# @return [String]
|
954
|
+
#
|
955
|
+
# @!attribute [rw] nsd_name
|
956
|
+
# Network service descriptor name.
|
957
|
+
# @return [String]
|
958
|
+
#
|
959
|
+
# @!attribute [rw] nsd_onboarding_state
|
960
|
+
# Network service descriptor onboarding state.
|
961
|
+
# @return [String]
|
962
|
+
#
|
963
|
+
# @!attribute [rw] nsd_operational_state
|
964
|
+
# Network service descriptor operational state.
|
965
|
+
# @return [String]
|
966
|
+
#
|
967
|
+
# @!attribute [rw] nsd_usage_state
|
968
|
+
# Network service descriptor usage state.
|
969
|
+
# @return [String]
|
970
|
+
#
|
971
|
+
# @!attribute [rw] nsd_version
|
972
|
+
# Network service descriptor version.
|
973
|
+
# @return [String]
|
974
|
+
#
|
975
|
+
# @!attribute [rw] tags
|
976
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
977
|
+
# Each tag consists of a key and an optional value. You can use tags
|
978
|
+
# to search and filter your resources or track your Amazon Web
|
979
|
+
# Services costs.
|
980
|
+
# @return [Hash<String,String>]
|
981
|
+
#
|
982
|
+
# @!attribute [rw] vnf_pkg_ids
|
983
|
+
# Identifies the function package for the function package descriptor
|
984
|
+
# referenced by the onboarded network package.
|
985
|
+
# @return [Array<String>]
|
986
|
+
#
|
987
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkPackageOutput AWS API Documentation
|
988
|
+
#
|
989
|
+
class GetSolNetworkPackageOutput < Struct.new(
|
990
|
+
:arn,
|
991
|
+
:id,
|
992
|
+
:metadata,
|
993
|
+
:nsd_id,
|
994
|
+
:nsd_name,
|
995
|
+
:nsd_onboarding_state,
|
996
|
+
:nsd_operational_state,
|
997
|
+
:nsd_usage_state,
|
998
|
+
:nsd_version,
|
999
|
+
:tags,
|
1000
|
+
:vnf_pkg_ids)
|
1001
|
+
SENSITIVE = [:tags]
|
1002
|
+
include Aws::Structure
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
# Information about the network function.
|
1006
|
+
#
|
1007
|
+
# A network function instance is a function in a function package .
|
1008
|
+
#
|
1009
|
+
# @!attribute [rw] vnf_state
|
1010
|
+
# State of the network function instance.
|
1011
|
+
# @return [String]
|
1012
|
+
#
|
1013
|
+
# @!attribute [rw] vnfc_resource_info
|
1014
|
+
# Compute info used by the network function instance.
|
1015
|
+
# @return [Array<Types::GetSolVnfcResourceInfo>]
|
1016
|
+
#
|
1017
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolVnfInfo AWS API Documentation
|
1018
|
+
#
|
1019
|
+
class GetSolVnfInfo < Struct.new(
|
1020
|
+
:vnf_state,
|
1021
|
+
:vnfc_resource_info)
|
1022
|
+
SENSITIVE = []
|
1023
|
+
include Aws::Structure
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
# Details of resource associated with a network function.
|
1027
|
+
#
|
1028
|
+
# A network instance is a single network created in Amazon Web Services
|
1029
|
+
# TNB that can be deployed and on which life-cycle operations (like
|
1030
|
+
# terminate, update, and delete) can be performed.
|
1031
|
+
#
|
1032
|
+
# @!attribute [rw] metadata
|
1033
|
+
# The metadata of the network function compute.
|
1034
|
+
# @return [Types::GetSolVnfcResourceInfoMetadata]
|
1035
|
+
#
|
1036
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolVnfcResourceInfo AWS API Documentation
|
1037
|
+
#
|
1038
|
+
class GetSolVnfcResourceInfo < Struct.new(
|
1039
|
+
:metadata)
|
1040
|
+
SENSITIVE = []
|
1041
|
+
include Aws::Structure
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
# The metadata of a network function.
|
1045
|
+
#
|
1046
|
+
# A network instance is a single network created in Amazon Web Services
|
1047
|
+
# TNB that can be deployed and on which life-cycle operations (like
|
1048
|
+
# terminate, update, and delete) can be performed.
|
1049
|
+
#
|
1050
|
+
# @!attribute [rw] cluster
|
1051
|
+
# Information about the cluster.
|
1052
|
+
# @return [String]
|
1053
|
+
#
|
1054
|
+
# @!attribute [rw] helm_chart
|
1055
|
+
# Information about the helm chart.
|
1056
|
+
# @return [String]
|
1057
|
+
#
|
1058
|
+
# @!attribute [rw] node_group
|
1059
|
+
# Information about the node group.
|
1060
|
+
# @return [String]
|
1061
|
+
#
|
1062
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolVnfcResourceInfoMetadata AWS API Documentation
|
1063
|
+
#
|
1064
|
+
class GetSolVnfcResourceInfoMetadata < Struct.new(
|
1065
|
+
:cluster,
|
1066
|
+
:helm_chart,
|
1067
|
+
:node_group)
|
1068
|
+
SENSITIVE = []
|
1069
|
+
include Aws::Structure
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
# @!attribute [rw] additional_params_for_ns
|
1073
|
+
# Provides values for the configurable properties.
|
1074
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
1075
|
+
#
|
1076
|
+
# @!attribute [rw] dry_run
|
1077
|
+
# A check for whether you have the required permissions for the action
|
1078
|
+
# without actually making the request and provides an error response.
|
1079
|
+
# If you have the required permissions, the error response is
|
1080
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
1081
|
+
# @return [Boolean]
|
1082
|
+
#
|
1083
|
+
# @!attribute [rw] ns_instance_id
|
1084
|
+
# ID of the network instance.
|
1085
|
+
# @return [String]
|
1086
|
+
#
|
1087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/InstantiateSolNetworkInstanceInput AWS API Documentation
|
1088
|
+
#
|
1089
|
+
class InstantiateSolNetworkInstanceInput < Struct.new(
|
1090
|
+
:additional_params_for_ns,
|
1091
|
+
:dry_run,
|
1092
|
+
:ns_instance_id)
|
1093
|
+
SENSITIVE = []
|
1094
|
+
include Aws::Structure
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
# @!attribute [rw] ns_lcm_op_occ_id
|
1098
|
+
# The identifier of the network instance.
|
1099
|
+
# @return [String]
|
1100
|
+
#
|
1101
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/InstantiateSolNetworkInstanceOutput AWS API Documentation
|
1102
|
+
#
|
1103
|
+
class InstantiateSolNetworkInstanceOutput < Struct.new(
|
1104
|
+
:ns_lcm_op_occ_id)
|
1105
|
+
SENSITIVE = []
|
1106
|
+
include Aws::Structure
|
1107
|
+
end
|
1108
|
+
|
1109
|
+
# Unexpected error occurred. Problem on the server.
|
1110
|
+
#
|
1111
|
+
# @!attribute [rw] message
|
1112
|
+
# @return [String]
|
1113
|
+
#
|
1114
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/InternalServerException AWS API Documentation
|
1115
|
+
#
|
1116
|
+
class InternalServerException < Struct.new(
|
1117
|
+
:message)
|
1118
|
+
SENSITIVE = []
|
1119
|
+
include Aws::Structure
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
# Lifecycle management operation details on the network instance.
|
1123
|
+
#
|
1124
|
+
# Lifecycle management operations are deploy, update, or delete
|
1125
|
+
# operations.
|
1126
|
+
#
|
1127
|
+
# @!attribute [rw] ns_lcm_op_occ_id
|
1128
|
+
# The identifier of the latest network lifecycle management operation
|
1129
|
+
# occurrence.
|
1130
|
+
# @return [String]
|
1131
|
+
#
|
1132
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/LcmOperationInfo AWS API Documentation
|
1133
|
+
#
|
1134
|
+
class LcmOperationInfo < Struct.new(
|
1135
|
+
:ns_lcm_op_occ_id)
|
1136
|
+
SENSITIVE = []
|
1137
|
+
include Aws::Structure
|
1138
|
+
end
|
1139
|
+
|
1140
|
+
# Lists information about a network function instance.
|
1141
|
+
#
|
1142
|
+
# A network function instance is a function in a function package .
|
1143
|
+
#
|
1144
|
+
# @!attribute [rw] arn
|
1145
|
+
# Network function instance ARN.
|
1146
|
+
# @return [String]
|
1147
|
+
#
|
1148
|
+
# @!attribute [rw] id
|
1149
|
+
# Network function instance ID.
|
1150
|
+
# @return [String]
|
1151
|
+
#
|
1152
|
+
# @!attribute [rw] instantiated_vnf_info
|
1153
|
+
# Information about a network function.
|
1154
|
+
#
|
1155
|
+
# A network instance is a single network created in Amazon Web
|
1156
|
+
# Services TNB that can be deployed and on which life-cycle operations
|
1157
|
+
# (like terminate, update, and delete) can be performed.
|
1158
|
+
# @return [Types::GetSolInstantiatedVnfInfo]
|
1159
|
+
#
|
1160
|
+
# @!attribute [rw] instantiation_state
|
1161
|
+
# Network function instance instantiation state.
|
1162
|
+
# @return [String]
|
1163
|
+
#
|
1164
|
+
# @!attribute [rw] metadata
|
1165
|
+
# Network function instance metadata.
|
1166
|
+
# @return [Types::ListSolFunctionInstanceMetadata]
|
1167
|
+
#
|
1168
|
+
# @!attribute [rw] ns_instance_id
|
1169
|
+
# Network instance ID.
|
1170
|
+
# @return [String]
|
1171
|
+
#
|
1172
|
+
# @!attribute [rw] vnf_pkg_id
|
1173
|
+
# Function package ID.
|
1174
|
+
# @return [String]
|
1175
|
+
#
|
1176
|
+
# @!attribute [rw] vnf_pkg_name
|
1177
|
+
# Function package name.
|
1178
|
+
# @return [String]
|
1179
|
+
#
|
1180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolFunctionInstanceInfo AWS API Documentation
|
1181
|
+
#
|
1182
|
+
class ListSolFunctionInstanceInfo < Struct.new(
|
1183
|
+
:arn,
|
1184
|
+
:id,
|
1185
|
+
:instantiated_vnf_info,
|
1186
|
+
:instantiation_state,
|
1187
|
+
:metadata,
|
1188
|
+
:ns_instance_id,
|
1189
|
+
:vnf_pkg_id,
|
1190
|
+
:vnf_pkg_name)
|
1191
|
+
SENSITIVE = []
|
1192
|
+
include Aws::Structure
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
# Lists network function instance metadata.
|
1196
|
+
#
|
1197
|
+
# A network function instance is a function in a function package .
|
1198
|
+
#
|
1199
|
+
# @!attribute [rw] created_at
|
1200
|
+
# When the network function instance was created.
|
1201
|
+
# @return [Time]
|
1202
|
+
#
|
1203
|
+
# @!attribute [rw] last_modified
|
1204
|
+
# When the network function instance was last modified.
|
1205
|
+
# @return [Time]
|
1206
|
+
#
|
1207
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolFunctionInstanceMetadata AWS API Documentation
|
1208
|
+
#
|
1209
|
+
class ListSolFunctionInstanceMetadata < Struct.new(
|
1210
|
+
:created_at,
|
1211
|
+
:last_modified)
|
1212
|
+
SENSITIVE = []
|
1213
|
+
include Aws::Structure
|
1214
|
+
end
|
1215
|
+
|
1216
|
+
# @!attribute [rw] max_results
|
1217
|
+
# The maximum number of results to include in the response.
|
1218
|
+
# @return [Integer]
|
1219
|
+
#
|
1220
|
+
# @!attribute [rw] next_token
|
1221
|
+
# The token for the next page of results.
|
1222
|
+
# @return [String]
|
1223
|
+
#
|
1224
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolFunctionInstancesInput AWS API Documentation
|
1225
|
+
#
|
1226
|
+
class ListSolFunctionInstancesInput < Struct.new(
|
1227
|
+
:max_results,
|
1228
|
+
:next_token)
|
1229
|
+
SENSITIVE = []
|
1230
|
+
include Aws::Structure
|
1231
|
+
end
|
1232
|
+
|
1233
|
+
# @!attribute [rw] function_instances
|
1234
|
+
# Network function instances.
|
1235
|
+
# @return [Array<Types::ListSolFunctionInstanceInfo>]
|
1236
|
+
#
|
1237
|
+
# @!attribute [rw] next_token
|
1238
|
+
# The token to use to retrieve the next page of results. This value is
|
1239
|
+
# `null` when there are no more results to return.
|
1240
|
+
# @return [String]
|
1241
|
+
#
|
1242
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolFunctionInstancesOutput AWS API Documentation
|
1243
|
+
#
|
1244
|
+
class ListSolFunctionInstancesOutput < Struct.new(
|
1245
|
+
:function_instances,
|
1246
|
+
:next_token)
|
1247
|
+
SENSITIVE = []
|
1248
|
+
include Aws::Structure
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
# Information about a function package.
|
1252
|
+
#
|
1253
|
+
# A function package is a .zip file in CSAR (Cloud Service Archive)
|
1254
|
+
# format that contains a network function (an ETSI standard
|
1255
|
+
# telecommunication application) and function package descriptor that
|
1256
|
+
# uses the TOSCA standard to describe how the network functions should
|
1257
|
+
# run on your network.
|
1258
|
+
#
|
1259
|
+
# @!attribute [rw] arn
|
1260
|
+
# Function package ARN.
|
1261
|
+
# @return [String]
|
1262
|
+
#
|
1263
|
+
# @!attribute [rw] id
|
1264
|
+
# ID of the function package.
|
1265
|
+
# @return [String]
|
1266
|
+
#
|
1267
|
+
# @!attribute [rw] metadata
|
1268
|
+
# The metadata of the function package.
|
1269
|
+
# @return [Types::ListSolFunctionPackageMetadata]
|
1270
|
+
#
|
1271
|
+
# @!attribute [rw] onboarding_state
|
1272
|
+
# Onboarding state of the function package.
|
1273
|
+
# @return [String]
|
1274
|
+
#
|
1275
|
+
# @!attribute [rw] operational_state
|
1276
|
+
# Operational state of the function package.
|
1277
|
+
# @return [String]
|
1278
|
+
#
|
1279
|
+
# @!attribute [rw] usage_state
|
1280
|
+
# Usage state of the function package.
|
1281
|
+
# @return [String]
|
1282
|
+
#
|
1283
|
+
# @!attribute [rw] vnf_product_name
|
1284
|
+
# The product name for the network function.
|
1285
|
+
# @return [String]
|
1286
|
+
#
|
1287
|
+
# @!attribute [rw] vnf_provider
|
1288
|
+
# Provider of the function package and the function package
|
1289
|
+
# descriptor.
|
1290
|
+
# @return [String]
|
1291
|
+
#
|
1292
|
+
# @!attribute [rw] vnfd_id
|
1293
|
+
# Identifies the function package and the function package descriptor.
|
1294
|
+
# @return [String]
|
1295
|
+
#
|
1296
|
+
# @!attribute [rw] vnfd_version
|
1297
|
+
# Identifies the version of the function package descriptor.
|
1298
|
+
# @return [String]
|
1299
|
+
#
|
1300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolFunctionPackageInfo AWS API Documentation
|
1301
|
+
#
|
1302
|
+
class ListSolFunctionPackageInfo < Struct.new(
|
1303
|
+
:arn,
|
1304
|
+
:id,
|
1305
|
+
:metadata,
|
1306
|
+
:onboarding_state,
|
1307
|
+
:operational_state,
|
1308
|
+
:usage_state,
|
1309
|
+
:vnf_product_name,
|
1310
|
+
:vnf_provider,
|
1311
|
+
:vnfd_id,
|
1312
|
+
:vnfd_version)
|
1313
|
+
SENSITIVE = []
|
1314
|
+
include Aws::Structure
|
1315
|
+
end
|
1316
|
+
|
1317
|
+
# Details for the function package metadata.
|
1318
|
+
#
|
1319
|
+
# A function package is a .zip file in CSAR (Cloud Service Archive)
|
1320
|
+
# format that contains a network function (an ETSI standard
|
1321
|
+
# telecommunication application) and function package descriptor that
|
1322
|
+
# uses the TOSCA standard to describe how the network functions should
|
1323
|
+
# run on your network.
|
1324
|
+
#
|
1325
|
+
# @!attribute [rw] created_at
|
1326
|
+
# The date that the resource was created.
|
1327
|
+
# @return [Time]
|
1328
|
+
#
|
1329
|
+
# @!attribute [rw] last_modified
|
1330
|
+
# The date that the resource was last modified.
|
1331
|
+
# @return [Time]
|
1332
|
+
#
|
1333
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolFunctionPackageMetadata AWS API Documentation
|
1334
|
+
#
|
1335
|
+
class ListSolFunctionPackageMetadata < Struct.new(
|
1336
|
+
:created_at,
|
1337
|
+
:last_modified)
|
1338
|
+
SENSITIVE = []
|
1339
|
+
include Aws::Structure
|
1340
|
+
end
|
1341
|
+
|
1342
|
+
# @!attribute [rw] max_results
|
1343
|
+
# The maximum number of results to include in the response.
|
1344
|
+
# @return [Integer]
|
1345
|
+
#
|
1346
|
+
# @!attribute [rw] next_token
|
1347
|
+
# The token for the next page of results.
|
1348
|
+
# @return [String]
|
1349
|
+
#
|
1350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolFunctionPackagesInput AWS API Documentation
|
1351
|
+
#
|
1352
|
+
class ListSolFunctionPackagesInput < Struct.new(
|
1353
|
+
:max_results,
|
1354
|
+
:next_token)
|
1355
|
+
SENSITIVE = []
|
1356
|
+
include Aws::Structure
|
1357
|
+
end
|
1358
|
+
|
1359
|
+
# @!attribute [rw] function_packages
|
1360
|
+
# Function packages. A function package is a .zip file in CSAR (Cloud
|
1361
|
+
# Service Archive) format that contains a network function (an ETSI
|
1362
|
+
# standard telecommunication application) and function package
|
1363
|
+
# descriptor that uses the TOSCA standard to describe how the network
|
1364
|
+
# functions should run on your network.
|
1365
|
+
# @return [Array<Types::ListSolFunctionPackageInfo>]
|
1366
|
+
#
|
1367
|
+
# @!attribute [rw] next_token
|
1368
|
+
# The token to use to retrieve the next page of results. This value is
|
1369
|
+
# `null` when there are no more results to return.
|
1370
|
+
# @return [String]
|
1371
|
+
#
|
1372
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolFunctionPackagesOutput AWS API Documentation
|
1373
|
+
#
|
1374
|
+
class ListSolFunctionPackagesOutput < Struct.new(
|
1375
|
+
:function_packages,
|
1376
|
+
:next_token)
|
1377
|
+
SENSITIVE = []
|
1378
|
+
include Aws::Structure
|
1379
|
+
end
|
1380
|
+
|
1381
|
+
# Info about the specific network instance.
|
1382
|
+
#
|
1383
|
+
# A network instance is a single network created in Amazon Web Services
|
1384
|
+
# TNB that can be deployed and on which life-cycle operations (like
|
1385
|
+
# terminate, update, and delete) can be performed.
|
1386
|
+
#
|
1387
|
+
# @!attribute [rw] arn
|
1388
|
+
# Network instance ARN.
|
1389
|
+
# @return [String]
|
1390
|
+
#
|
1391
|
+
# @!attribute [rw] id
|
1392
|
+
# ID of the network instance.
|
1393
|
+
# @return [String]
|
1394
|
+
#
|
1395
|
+
# @!attribute [rw] metadata
|
1396
|
+
# The metadata of the network instance.
|
1397
|
+
# @return [Types::ListSolNetworkInstanceMetadata]
|
1398
|
+
#
|
1399
|
+
# @!attribute [rw] ns_instance_description
|
1400
|
+
# Human-readable description of the network instance.
|
1401
|
+
# @return [String]
|
1402
|
+
#
|
1403
|
+
# @!attribute [rw] ns_instance_name
|
1404
|
+
# Human-readable name of the network instance.
|
1405
|
+
# @return [String]
|
1406
|
+
#
|
1407
|
+
# @!attribute [rw] ns_state
|
1408
|
+
# The state of the network instance.
|
1409
|
+
# @return [String]
|
1410
|
+
#
|
1411
|
+
# @!attribute [rw] nsd_id
|
1412
|
+
# ID of the network service descriptor in the network package.
|
1413
|
+
# @return [String]
|
1414
|
+
#
|
1415
|
+
# @!attribute [rw] nsd_info_id
|
1416
|
+
# ID of the network service descriptor in the network package.
|
1417
|
+
# @return [String]
|
1418
|
+
#
|
1419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkInstanceInfo AWS API Documentation
|
1420
|
+
#
|
1421
|
+
class ListSolNetworkInstanceInfo < Struct.new(
|
1422
|
+
:arn,
|
1423
|
+
:id,
|
1424
|
+
:metadata,
|
1425
|
+
:ns_instance_description,
|
1426
|
+
:ns_instance_name,
|
1427
|
+
:ns_state,
|
1428
|
+
:nsd_id,
|
1429
|
+
:nsd_info_id)
|
1430
|
+
SENSITIVE = []
|
1431
|
+
include Aws::Structure
|
1432
|
+
end
|
1433
|
+
|
1434
|
+
# Metadata details for a network instance.
|
1435
|
+
#
|
1436
|
+
# A network instance is a single network created in Amazon Web Services
|
1437
|
+
# TNB that can be deployed and on which life-cycle operations (like
|
1438
|
+
# terminate, update, and delete) can be performed.
|
1439
|
+
#
|
1440
|
+
# @!attribute [rw] created_at
|
1441
|
+
# The date that the resource was created.
|
1442
|
+
# @return [Time]
|
1443
|
+
#
|
1444
|
+
# @!attribute [rw] last_modified
|
1445
|
+
# The date that the resource was last modified.
|
1446
|
+
# @return [Time]
|
1447
|
+
#
|
1448
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkInstanceMetadata AWS API Documentation
|
1449
|
+
#
|
1450
|
+
class ListSolNetworkInstanceMetadata < Struct.new(
|
1451
|
+
:created_at,
|
1452
|
+
:last_modified)
|
1453
|
+
SENSITIVE = []
|
1454
|
+
include Aws::Structure
|
1455
|
+
end
|
1456
|
+
|
1457
|
+
# @!attribute [rw] max_results
|
1458
|
+
# The maximum number of results to include in the response.
|
1459
|
+
# @return [Integer]
|
1460
|
+
#
|
1461
|
+
# @!attribute [rw] next_token
|
1462
|
+
# The token for the next page of results.
|
1463
|
+
# @return [String]
|
1464
|
+
#
|
1465
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkInstancesInput AWS API Documentation
|
1466
|
+
#
|
1467
|
+
class ListSolNetworkInstancesInput < Struct.new(
|
1468
|
+
:max_results,
|
1469
|
+
:next_token)
|
1470
|
+
SENSITIVE = []
|
1471
|
+
include Aws::Structure
|
1472
|
+
end
|
1473
|
+
|
1474
|
+
# @!attribute [rw] network_instances
|
1475
|
+
# Lists network instances.
|
1476
|
+
# @return [Array<Types::ListSolNetworkInstanceInfo>]
|
1477
|
+
#
|
1478
|
+
# @!attribute [rw] next_token
|
1479
|
+
# The token to use to retrieve the next page of results. This value is
|
1480
|
+
# `null` when there are no more results to return.
|
1481
|
+
# @return [String]
|
1482
|
+
#
|
1483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkInstancesOutput AWS API Documentation
|
1484
|
+
#
|
1485
|
+
class ListSolNetworkInstancesOutput < Struct.new(
|
1486
|
+
:network_instances,
|
1487
|
+
:next_token)
|
1488
|
+
SENSITIVE = []
|
1489
|
+
include Aws::Structure
|
1490
|
+
end
|
1491
|
+
|
1492
|
+
# Information parameters for a network operation.
|
1493
|
+
#
|
1494
|
+
# @!attribute [rw] arn
|
1495
|
+
# Network operation ARN.
|
1496
|
+
# @return [String]
|
1497
|
+
#
|
1498
|
+
# @!attribute [rw] error
|
1499
|
+
# Error related to this specific network operation.
|
1500
|
+
# @return [Types::ProblemDetails]
|
1501
|
+
#
|
1502
|
+
# @!attribute [rw] id
|
1503
|
+
# ID of this network operation.
|
1504
|
+
# @return [String]
|
1505
|
+
#
|
1506
|
+
# @!attribute [rw] lcm_operation_type
|
1507
|
+
# Type of lifecycle management network operation.
|
1508
|
+
# @return [String]
|
1509
|
+
#
|
1510
|
+
# @!attribute [rw] metadata
|
1511
|
+
# Metadata related to this network operation.
|
1512
|
+
# @return [Types::ListSolNetworkOperationsMetadata]
|
1513
|
+
#
|
1514
|
+
# @!attribute [rw] ns_instance_id
|
1515
|
+
# ID of the network instance related to this operation.
|
1516
|
+
# @return [String]
|
1517
|
+
#
|
1518
|
+
# @!attribute [rw] operation_state
|
1519
|
+
# The state of the network operation.
|
1520
|
+
# @return [String]
|
1521
|
+
#
|
1522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkOperationsInfo AWS API Documentation
|
1523
|
+
#
|
1524
|
+
class ListSolNetworkOperationsInfo < Struct.new(
|
1525
|
+
:arn,
|
1526
|
+
:error,
|
1527
|
+
:id,
|
1528
|
+
:lcm_operation_type,
|
1529
|
+
:metadata,
|
1530
|
+
:ns_instance_id,
|
1531
|
+
:operation_state)
|
1532
|
+
SENSITIVE = []
|
1533
|
+
include Aws::Structure
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
# @!attribute [rw] max_results
|
1537
|
+
# The maximum number of results to include in the response.
|
1538
|
+
# @return [Integer]
|
1539
|
+
#
|
1540
|
+
# @!attribute [rw] next_token
|
1541
|
+
# The token for the next page of results.
|
1542
|
+
# @return [String]
|
1543
|
+
#
|
1544
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkOperationsInput AWS API Documentation
|
1545
|
+
#
|
1546
|
+
class ListSolNetworkOperationsInput < Struct.new(
|
1547
|
+
:max_results,
|
1548
|
+
:next_token)
|
1549
|
+
SENSITIVE = []
|
1550
|
+
include Aws::Structure
|
1551
|
+
end
|
1552
|
+
|
1553
|
+
# Metadata related to a network operation.
|
1554
|
+
#
|
1555
|
+
# A network operation is any operation that is done to your network,
|
1556
|
+
# such as network instance instantiation or termination.
|
1557
|
+
#
|
1558
|
+
# @!attribute [rw] created_at
|
1559
|
+
# The date that the resource was created.
|
1560
|
+
# @return [Time]
|
1561
|
+
#
|
1562
|
+
# @!attribute [rw] last_modified
|
1563
|
+
# The date that the resource was last modified.
|
1564
|
+
# @return [Time]
|
1565
|
+
#
|
1566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkOperationsMetadata AWS API Documentation
|
1567
|
+
#
|
1568
|
+
class ListSolNetworkOperationsMetadata < Struct.new(
|
1569
|
+
:created_at,
|
1570
|
+
:last_modified)
|
1571
|
+
SENSITIVE = []
|
1572
|
+
include Aws::Structure
|
1573
|
+
end
|
1574
|
+
|
1575
|
+
# @!attribute [rw] network_operations
|
1576
|
+
# Lists network operation occurrences. Lifecycle management operations
|
1577
|
+
# are deploy, update, or delete operations.
|
1578
|
+
# @return [Array<Types::ListSolNetworkOperationsInfo>]
|
1579
|
+
#
|
1580
|
+
# @!attribute [rw] next_token
|
1581
|
+
# The token to use to retrieve the next page of results. This value is
|
1582
|
+
# `null` when there are no more results to return.
|
1583
|
+
# @return [String]
|
1584
|
+
#
|
1585
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkOperationsOutput AWS API Documentation
|
1586
|
+
#
|
1587
|
+
class ListSolNetworkOperationsOutput < Struct.new(
|
1588
|
+
:network_operations,
|
1589
|
+
:next_token)
|
1590
|
+
SENSITIVE = []
|
1591
|
+
include Aws::Structure
|
1592
|
+
end
|
1593
|
+
|
1594
|
+
# Details of a network package.
|
1595
|
+
#
|
1596
|
+
# A network package is a .zip file in CSAR (Cloud Service Archive)
|
1597
|
+
# format defines the function packages you want to deploy and the Amazon
|
1598
|
+
# Web Services infrastructure you want to deploy them on.
|
1599
|
+
#
|
1600
|
+
# @!attribute [rw] arn
|
1601
|
+
# Network package ARN.
|
1602
|
+
# @return [String]
|
1603
|
+
#
|
1604
|
+
# @!attribute [rw] id
|
1605
|
+
# ID of the individual network package.
|
1606
|
+
# @return [String]
|
1607
|
+
#
|
1608
|
+
# @!attribute [rw] metadata
|
1609
|
+
# The metadata of the network package.
|
1610
|
+
# @return [Types::ListSolNetworkPackageMetadata]
|
1611
|
+
#
|
1612
|
+
# @!attribute [rw] nsd_designer
|
1613
|
+
# Designer of the onboarded network service descriptor in the network
|
1614
|
+
# package.
|
1615
|
+
# @return [String]
|
1616
|
+
#
|
1617
|
+
# @!attribute [rw] nsd_id
|
1618
|
+
# ID of the network service descriptor on which the network package is
|
1619
|
+
# based.
|
1620
|
+
# @return [String]
|
1621
|
+
#
|
1622
|
+
# @!attribute [rw] nsd_invariant_id
|
1623
|
+
# Identifies a network service descriptor in a version independent
|
1624
|
+
# manner.
|
1625
|
+
# @return [String]
|
1626
|
+
#
|
1627
|
+
# @!attribute [rw] nsd_name
|
1628
|
+
# Name of the onboarded network service descriptor in the network
|
1629
|
+
# package.
|
1630
|
+
# @return [String]
|
1631
|
+
#
|
1632
|
+
# @!attribute [rw] nsd_onboarding_state
|
1633
|
+
# Onboarding state of the network service descriptor in the network
|
1634
|
+
# package.
|
1635
|
+
# @return [String]
|
1636
|
+
#
|
1637
|
+
# @!attribute [rw] nsd_operational_state
|
1638
|
+
# Operational state of the network service descriptor in the network
|
1639
|
+
# package.
|
1640
|
+
# @return [String]
|
1641
|
+
#
|
1642
|
+
# @!attribute [rw] nsd_usage_state
|
1643
|
+
# Usage state of the network service descriptor in the network
|
1644
|
+
# package.
|
1645
|
+
# @return [String]
|
1646
|
+
#
|
1647
|
+
# @!attribute [rw] nsd_version
|
1648
|
+
# Version of the onboarded network service descriptor in the network
|
1649
|
+
# package.
|
1650
|
+
# @return [String]
|
1651
|
+
#
|
1652
|
+
# @!attribute [rw] vnf_pkg_ids
|
1653
|
+
# Identifies the function package for the function package descriptor
|
1654
|
+
# referenced by the onboarded network package.
|
1655
|
+
# @return [Array<String>]
|
1656
|
+
#
|
1657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkPackageInfo AWS API Documentation
|
1658
|
+
#
|
1659
|
+
class ListSolNetworkPackageInfo < Struct.new(
|
1660
|
+
:arn,
|
1661
|
+
:id,
|
1662
|
+
:metadata,
|
1663
|
+
:nsd_designer,
|
1664
|
+
:nsd_id,
|
1665
|
+
:nsd_invariant_id,
|
1666
|
+
:nsd_name,
|
1667
|
+
:nsd_onboarding_state,
|
1668
|
+
:nsd_operational_state,
|
1669
|
+
:nsd_usage_state,
|
1670
|
+
:nsd_version,
|
1671
|
+
:vnf_pkg_ids)
|
1672
|
+
SENSITIVE = []
|
1673
|
+
include Aws::Structure
|
1674
|
+
end
|
1675
|
+
|
1676
|
+
# Metadata related to a network package.
|
1677
|
+
#
|
1678
|
+
# A network package is a .zip file in CSAR (Cloud Service Archive)
|
1679
|
+
# format defines the function packages you want to deploy and the Amazon
|
1680
|
+
# Web Services infrastructure you want to deploy them on.
|
1681
|
+
#
|
1682
|
+
# @!attribute [rw] created_at
|
1683
|
+
# The date that the resource was created.
|
1684
|
+
# @return [Time]
|
1685
|
+
#
|
1686
|
+
# @!attribute [rw] last_modified
|
1687
|
+
# The date that the resource was last modified.
|
1688
|
+
# @return [Time]
|
1689
|
+
#
|
1690
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkPackageMetadata AWS API Documentation
|
1691
|
+
#
|
1692
|
+
class ListSolNetworkPackageMetadata < Struct.new(
|
1693
|
+
:created_at,
|
1694
|
+
:last_modified)
|
1695
|
+
SENSITIVE = []
|
1696
|
+
include Aws::Structure
|
1697
|
+
end
|
1698
|
+
|
1699
|
+
# @!attribute [rw] max_results
|
1700
|
+
# The maximum number of results to include in the response.
|
1701
|
+
# @return [Integer]
|
1702
|
+
#
|
1703
|
+
# @!attribute [rw] next_token
|
1704
|
+
# The token for the next page of results.
|
1705
|
+
# @return [String]
|
1706
|
+
#
|
1707
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkPackagesInput AWS API Documentation
|
1708
|
+
#
|
1709
|
+
class ListSolNetworkPackagesInput < Struct.new(
|
1710
|
+
:max_results,
|
1711
|
+
:next_token)
|
1712
|
+
SENSITIVE = []
|
1713
|
+
include Aws::Structure
|
1714
|
+
end
|
1715
|
+
|
1716
|
+
# @!attribute [rw] network_packages
|
1717
|
+
# Network packages. A network package is a .zip file in CSAR (Cloud
|
1718
|
+
# Service Archive) format defines the function packages you want to
|
1719
|
+
# deploy and the Amazon Web Services infrastructure you want to deploy
|
1720
|
+
# them on.
|
1721
|
+
# @return [Array<Types::ListSolNetworkPackageInfo>]
|
1722
|
+
#
|
1723
|
+
# @!attribute [rw] next_token
|
1724
|
+
# The token to use to retrieve the next page of results. This value is
|
1725
|
+
# `null` when there are no more results to return.
|
1726
|
+
# @return [String]
|
1727
|
+
#
|
1728
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkPackagesOutput AWS API Documentation
|
1729
|
+
#
|
1730
|
+
class ListSolNetworkPackagesOutput < Struct.new(
|
1731
|
+
:network_packages,
|
1732
|
+
:next_token)
|
1733
|
+
SENSITIVE = []
|
1734
|
+
include Aws::Structure
|
1735
|
+
end
|
1736
|
+
|
1737
|
+
# @!attribute [rw] resource_arn
|
1738
|
+
# Resource ARN.
|
1739
|
+
# @return [String]
|
1740
|
+
#
|
1741
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListTagsForResourceInput AWS API Documentation
|
1742
|
+
#
|
1743
|
+
class ListTagsForResourceInput < Struct.new(
|
1744
|
+
:resource_arn)
|
1745
|
+
SENSITIVE = []
|
1746
|
+
include Aws::Structure
|
1747
|
+
end
|
1748
|
+
|
1749
|
+
# @!attribute [rw] tags
|
1750
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
1751
|
+
# Each tag consists of a key and an optional value. You can use tags
|
1752
|
+
# to search and filter your resources or track your Amazon Web
|
1753
|
+
# Services costs.
|
1754
|
+
# @return [Hash<String,String>]
|
1755
|
+
#
|
1756
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListTagsForResourceOutput AWS API Documentation
|
1757
|
+
#
|
1758
|
+
class ListTagsForResourceOutput < Struct.new(
|
1759
|
+
:tags)
|
1760
|
+
SENSITIVE = [:tags]
|
1761
|
+
include Aws::Structure
|
1762
|
+
end
|
1763
|
+
|
1764
|
+
# Metadata for network package artifacts.
|
1765
|
+
#
|
1766
|
+
# Artifacts are the contents of the package descriptor file and the
|
1767
|
+
# state of the package.
|
1768
|
+
#
|
1769
|
+
# @!attribute [rw] overrides
|
1770
|
+
# Lists network package overrides.
|
1771
|
+
# @return [Array<Types::ToscaOverride>]
|
1772
|
+
#
|
1773
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/NetworkArtifactMeta AWS API Documentation
|
1774
|
+
#
|
1775
|
+
class NetworkArtifactMeta < Struct.new(
|
1776
|
+
:overrides)
|
1777
|
+
SENSITIVE = []
|
1778
|
+
include Aws::Structure
|
1779
|
+
end
|
1780
|
+
|
1781
|
+
# Details related to problems with AWS TNB resources.
|
1782
|
+
#
|
1783
|
+
# @!attribute [rw] detail
|
1784
|
+
# A human-readable explanation specific to this occurrence of the
|
1785
|
+
# problem.
|
1786
|
+
# @return [String]
|
1787
|
+
#
|
1788
|
+
# @!attribute [rw] title
|
1789
|
+
# A human-readable title of the problem type.
|
1790
|
+
# @return [String]
|
1791
|
+
#
|
1792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ProblemDetails AWS API Documentation
|
1793
|
+
#
|
1794
|
+
class ProblemDetails < Struct.new(
|
1795
|
+
:detail,
|
1796
|
+
:title)
|
1797
|
+
SENSITIVE = []
|
1798
|
+
include Aws::Structure
|
1799
|
+
end
|
1800
|
+
|
1801
|
+
# @!attribute [rw] content_type
|
1802
|
+
# Function package content type.
|
1803
|
+
# @return [String]
|
1804
|
+
#
|
1805
|
+
# @!attribute [rw] file
|
1806
|
+
# Function package file.
|
1807
|
+
# @return [String]
|
1808
|
+
#
|
1809
|
+
# @!attribute [rw] vnf_pkg_id
|
1810
|
+
# Function package ID.
|
1811
|
+
# @return [String]
|
1812
|
+
#
|
1813
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/PutSolFunctionPackageContentInput AWS API Documentation
|
1814
|
+
#
|
1815
|
+
class PutSolFunctionPackageContentInput < Struct.new(
|
1816
|
+
:content_type,
|
1817
|
+
:file,
|
1818
|
+
:vnf_pkg_id)
|
1819
|
+
SENSITIVE = []
|
1820
|
+
include Aws::Structure
|
1821
|
+
end
|
1822
|
+
|
1823
|
+
# Update metadata in a function package.
|
1824
|
+
#
|
1825
|
+
# A function package is a .zip file in CSAR (Cloud Service Archive)
|
1826
|
+
# format that contains a network function (an ETSI standard
|
1827
|
+
# telecommunication application) and function package descriptor that
|
1828
|
+
# uses the TOSCA standard to describe how the network functions should
|
1829
|
+
# run on your network.
|
1830
|
+
#
|
1831
|
+
# @!attribute [rw] vnfd
|
1832
|
+
# Metadata for function package artifacts.
|
1833
|
+
#
|
1834
|
+
# Artifacts are the contents of the package descriptor file and the
|
1835
|
+
# state of the package.
|
1836
|
+
# @return [Types::FunctionArtifactMeta]
|
1837
|
+
#
|
1838
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/PutSolFunctionPackageContentMetadata AWS API Documentation
|
1839
|
+
#
|
1840
|
+
class PutSolFunctionPackageContentMetadata < Struct.new(
|
1841
|
+
:vnfd)
|
1842
|
+
SENSITIVE = []
|
1843
|
+
include Aws::Structure
|
1844
|
+
end
|
1845
|
+
|
1846
|
+
# @!attribute [rw] id
|
1847
|
+
# Function package ID.
|
1848
|
+
# @return [String]
|
1849
|
+
#
|
1850
|
+
# @!attribute [rw] metadata
|
1851
|
+
# Function package metadata.
|
1852
|
+
# @return [Types::PutSolFunctionPackageContentMetadata]
|
1853
|
+
#
|
1854
|
+
# @!attribute [rw] vnf_product_name
|
1855
|
+
# Function product name.
|
1856
|
+
# @return [String]
|
1857
|
+
#
|
1858
|
+
# @!attribute [rw] vnf_provider
|
1859
|
+
# Function provider.
|
1860
|
+
# @return [String]
|
1861
|
+
#
|
1862
|
+
# @!attribute [rw] vnfd_id
|
1863
|
+
# Function package descriptor ID.
|
1864
|
+
# @return [String]
|
1865
|
+
#
|
1866
|
+
# @!attribute [rw] vnfd_version
|
1867
|
+
# Function package descriptor version.
|
1868
|
+
# @return [String]
|
1869
|
+
#
|
1870
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/PutSolFunctionPackageContentOutput AWS API Documentation
|
1871
|
+
#
|
1872
|
+
class PutSolFunctionPackageContentOutput < Struct.new(
|
1873
|
+
:id,
|
1874
|
+
:metadata,
|
1875
|
+
:vnf_product_name,
|
1876
|
+
:vnf_provider,
|
1877
|
+
:vnfd_id,
|
1878
|
+
:vnfd_version)
|
1879
|
+
SENSITIVE = []
|
1880
|
+
include Aws::Structure
|
1881
|
+
end
|
1882
|
+
|
1883
|
+
# @!attribute [rw] content_type
|
1884
|
+
# Network package content type.
|
1885
|
+
# @return [String]
|
1886
|
+
#
|
1887
|
+
# @!attribute [rw] file
|
1888
|
+
# Network package file.
|
1889
|
+
# @return [String]
|
1890
|
+
#
|
1891
|
+
# @!attribute [rw] nsd_info_id
|
1892
|
+
# Network service descriptor info ID.
|
1893
|
+
# @return [String]
|
1894
|
+
#
|
1895
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/PutSolNetworkPackageContentInput AWS API Documentation
|
1896
|
+
#
|
1897
|
+
class PutSolNetworkPackageContentInput < Struct.new(
|
1898
|
+
:content_type,
|
1899
|
+
:file,
|
1900
|
+
:nsd_info_id)
|
1901
|
+
SENSITIVE = []
|
1902
|
+
include Aws::Structure
|
1903
|
+
end
|
1904
|
+
|
1905
|
+
# Update metadata in a network package.
|
1906
|
+
#
|
1907
|
+
# A network package is a .zip file in CSAR (Cloud Service Archive)
|
1908
|
+
# format defines the function packages you want to deploy and the Amazon
|
1909
|
+
# Web Services infrastructure you want to deploy them on.
|
1910
|
+
#
|
1911
|
+
# @!attribute [rw] nsd
|
1912
|
+
# Metadata for network package artifacts.
|
1913
|
+
#
|
1914
|
+
# Artifacts are the contents of the package descriptor file and the
|
1915
|
+
# state of the package.
|
1916
|
+
# @return [Types::NetworkArtifactMeta]
|
1917
|
+
#
|
1918
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/PutSolNetworkPackageContentMetadata AWS API Documentation
|
1919
|
+
#
|
1920
|
+
class PutSolNetworkPackageContentMetadata < Struct.new(
|
1921
|
+
:nsd)
|
1922
|
+
SENSITIVE = []
|
1923
|
+
include Aws::Structure
|
1924
|
+
end
|
1925
|
+
|
1926
|
+
# @!attribute [rw] arn
|
1927
|
+
# Network package ARN.
|
1928
|
+
# @return [String]
|
1929
|
+
#
|
1930
|
+
# @!attribute [rw] id
|
1931
|
+
# Network package ID.
|
1932
|
+
# @return [String]
|
1933
|
+
#
|
1934
|
+
# @!attribute [rw] metadata
|
1935
|
+
# Network package metadata.
|
1936
|
+
# @return [Types::PutSolNetworkPackageContentMetadata]
|
1937
|
+
#
|
1938
|
+
# @!attribute [rw] nsd_id
|
1939
|
+
# Network service descriptor ID.
|
1940
|
+
# @return [String]
|
1941
|
+
#
|
1942
|
+
# @!attribute [rw] nsd_name
|
1943
|
+
# Network service descriptor name.
|
1944
|
+
# @return [String]
|
1945
|
+
#
|
1946
|
+
# @!attribute [rw] nsd_version
|
1947
|
+
# Network service descriptor version.
|
1948
|
+
# @return [String]
|
1949
|
+
#
|
1950
|
+
# @!attribute [rw] vnf_pkg_ids
|
1951
|
+
# Function package IDs.
|
1952
|
+
# @return [Array<String>]
|
1953
|
+
#
|
1954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/PutSolNetworkPackageContentOutput AWS API Documentation
|
1955
|
+
#
|
1956
|
+
class PutSolNetworkPackageContentOutput < Struct.new(
|
1957
|
+
:arn,
|
1958
|
+
:id,
|
1959
|
+
:metadata,
|
1960
|
+
:nsd_id,
|
1961
|
+
:nsd_name,
|
1962
|
+
:nsd_version,
|
1963
|
+
:vnf_pkg_ids)
|
1964
|
+
SENSITIVE = []
|
1965
|
+
include Aws::Structure
|
1966
|
+
end
|
1967
|
+
|
1968
|
+
# Request references a resource that doesn't exist.
|
1969
|
+
#
|
1970
|
+
# @!attribute [rw] message
|
1971
|
+
# @return [String]
|
1972
|
+
#
|
1973
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ResourceNotFoundException AWS API Documentation
|
1974
|
+
#
|
1975
|
+
class ResourceNotFoundException < Struct.new(
|
1976
|
+
:message)
|
1977
|
+
SENSITIVE = []
|
1978
|
+
include Aws::Structure
|
1979
|
+
end
|
1980
|
+
|
1981
|
+
# Service quotas have been exceeded.
|
1982
|
+
#
|
1983
|
+
# @!attribute [rw] message
|
1984
|
+
# @return [String]
|
1985
|
+
#
|
1986
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ServiceQuotaExceededException AWS API Documentation
|
1987
|
+
#
|
1988
|
+
class ServiceQuotaExceededException < Struct.new(
|
1989
|
+
:message)
|
1990
|
+
SENSITIVE = []
|
1991
|
+
include Aws::Structure
|
1992
|
+
end
|
1993
|
+
|
1994
|
+
# @!attribute [rw] resource_arn
|
1995
|
+
# Resource ARN.
|
1996
|
+
# @return [String]
|
1997
|
+
#
|
1998
|
+
# @!attribute [rw] tags
|
1999
|
+
# A tag is a label that you assign to an Amazon Web Services resource.
|
2000
|
+
# Each tag consists of a key and an optional value. You can use tags
|
2001
|
+
# to search and filter your resources or track your Amazon Web
|
2002
|
+
# Services costs.
|
2003
|
+
# @return [Hash<String,String>]
|
2004
|
+
#
|
2005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/TagResourceInput AWS API Documentation
|
2006
|
+
#
|
2007
|
+
class TagResourceInput < Struct.new(
|
2008
|
+
:resource_arn,
|
2009
|
+
:tags)
|
2010
|
+
SENSITIVE = [:tags]
|
2011
|
+
include Aws::Structure
|
2012
|
+
end
|
2013
|
+
|
2014
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/TagResourceOutput AWS API Documentation
|
2015
|
+
#
|
2016
|
+
class TagResourceOutput < Aws::EmptyStructure; end
|
2017
|
+
|
2018
|
+
# @!attribute [rw] ns_instance_id
|
2019
|
+
# ID of the network instance.
|
2020
|
+
# @return [String]
|
2021
|
+
#
|
2022
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/TerminateSolNetworkInstanceInput AWS API Documentation
|
2023
|
+
#
|
2024
|
+
class TerminateSolNetworkInstanceInput < Struct.new(
|
2025
|
+
:ns_instance_id)
|
2026
|
+
SENSITIVE = []
|
2027
|
+
include Aws::Structure
|
2028
|
+
end
|
2029
|
+
|
2030
|
+
# @!attribute [rw] ns_lcm_op_occ_id
|
2031
|
+
# The identifier of the operation occurrence.
|
2032
|
+
# @return [String]
|
2033
|
+
#
|
2034
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/TerminateSolNetworkInstanceOutput AWS API Documentation
|
2035
|
+
#
|
2036
|
+
class TerminateSolNetworkInstanceOutput < Struct.new(
|
2037
|
+
:ns_lcm_op_occ_id)
|
2038
|
+
SENSITIVE = []
|
2039
|
+
include Aws::Structure
|
2040
|
+
end
|
2041
|
+
|
2042
|
+
# Exception caused by throttling.
|
2043
|
+
#
|
2044
|
+
# @!attribute [rw] message
|
2045
|
+
# @return [String]
|
2046
|
+
#
|
2047
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ThrottlingException AWS API Documentation
|
2048
|
+
#
|
2049
|
+
class ThrottlingException < Struct.new(
|
2050
|
+
:message)
|
2051
|
+
SENSITIVE = []
|
2052
|
+
include Aws::Structure
|
2053
|
+
end
|
2054
|
+
|
2055
|
+
# Overrides of the TOSCA node.
|
2056
|
+
#
|
2057
|
+
# @!attribute [rw] default_value
|
2058
|
+
# Default value for the override.
|
2059
|
+
# @return [String]
|
2060
|
+
#
|
2061
|
+
# @!attribute [rw] name
|
2062
|
+
# Name of the TOSCA override.
|
2063
|
+
# @return [String]
|
2064
|
+
#
|
2065
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ToscaOverride AWS API Documentation
|
2066
|
+
#
|
2067
|
+
class ToscaOverride < Struct.new(
|
2068
|
+
:default_value,
|
2069
|
+
:name)
|
2070
|
+
SENSITIVE = []
|
2071
|
+
include Aws::Structure
|
2072
|
+
end
|
2073
|
+
|
2074
|
+
# @!attribute [rw] resource_arn
|
2075
|
+
# Resource ARN.
|
2076
|
+
# @return [String]
|
2077
|
+
#
|
2078
|
+
# @!attribute [rw] tag_keys
|
2079
|
+
# Tag keys.
|
2080
|
+
# @return [Array<String>]
|
2081
|
+
#
|
2082
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UntagResourceInput AWS API Documentation
|
2083
|
+
#
|
2084
|
+
class UntagResourceInput < Struct.new(
|
2085
|
+
:resource_arn,
|
2086
|
+
:tag_keys)
|
2087
|
+
SENSITIVE = []
|
2088
|
+
include Aws::Structure
|
2089
|
+
end
|
2090
|
+
|
2091
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UntagResourceOutput AWS API Documentation
|
2092
|
+
#
|
2093
|
+
class UntagResourceOutput < Aws::EmptyStructure; end
|
2094
|
+
|
2095
|
+
# @!attribute [rw] operational_state
|
2096
|
+
# Operational state of the function package.
|
2097
|
+
# @return [String]
|
2098
|
+
#
|
2099
|
+
# @!attribute [rw] vnf_pkg_id
|
2100
|
+
# ID of the function package.
|
2101
|
+
# @return [String]
|
2102
|
+
#
|
2103
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UpdateSolFunctionPackageInput AWS API Documentation
|
2104
|
+
#
|
2105
|
+
class UpdateSolFunctionPackageInput < Struct.new(
|
2106
|
+
:operational_state,
|
2107
|
+
:vnf_pkg_id)
|
2108
|
+
SENSITIVE = []
|
2109
|
+
include Aws::Structure
|
2110
|
+
end
|
2111
|
+
|
2112
|
+
# @!attribute [rw] operational_state
|
2113
|
+
# Operational state of the function package.
|
2114
|
+
# @return [String]
|
2115
|
+
#
|
2116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UpdateSolFunctionPackageOutput AWS API Documentation
|
2117
|
+
#
|
2118
|
+
class UpdateSolFunctionPackageOutput < Struct.new(
|
2119
|
+
:operational_state)
|
2120
|
+
SENSITIVE = []
|
2121
|
+
include Aws::Structure
|
2122
|
+
end
|
2123
|
+
|
2124
|
+
# @!attribute [rw] modify_vnf_info_data
|
2125
|
+
# Identifies the network function information parameters and/or the
|
2126
|
+
# configurable properties of the network function to be modified.
|
2127
|
+
# @return [Types::UpdateSolNetworkModify]
|
2128
|
+
#
|
2129
|
+
# @!attribute [rw] ns_instance_id
|
2130
|
+
# ID of the network instance.
|
2131
|
+
# @return [String]
|
2132
|
+
#
|
2133
|
+
# @!attribute [rw] update_type
|
2134
|
+
# The type of update.
|
2135
|
+
# @return [String]
|
2136
|
+
#
|
2137
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UpdateSolNetworkInstanceInput AWS API Documentation
|
2138
|
+
#
|
2139
|
+
class UpdateSolNetworkInstanceInput < Struct.new(
|
2140
|
+
:modify_vnf_info_data,
|
2141
|
+
:ns_instance_id,
|
2142
|
+
:update_type)
|
2143
|
+
SENSITIVE = []
|
2144
|
+
include Aws::Structure
|
2145
|
+
end
|
2146
|
+
|
2147
|
+
# @!attribute [rw] ns_lcm_op_occ_id
|
2148
|
+
# The identifier of the network instance operation occurrence.
|
2149
|
+
# @return [String]
|
2150
|
+
#
|
2151
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UpdateSolNetworkInstanceOutput AWS API Documentation
|
2152
|
+
#
|
2153
|
+
class UpdateSolNetworkInstanceOutput < Struct.new(
|
2154
|
+
:ns_lcm_op_occ_id)
|
2155
|
+
SENSITIVE = []
|
2156
|
+
include Aws::Structure
|
2157
|
+
end
|
2158
|
+
|
2159
|
+
# Information parameters and/or the configurable properties for a
|
2160
|
+
# network function.
|
2161
|
+
#
|
2162
|
+
# A network function instance is a function in a function package .
|
2163
|
+
#
|
2164
|
+
# @!attribute [rw] vnf_configurable_properties
|
2165
|
+
# Provides values for the configurable properties declared in the
|
2166
|
+
# function package descriptor.
|
2167
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
2168
|
+
#
|
2169
|
+
# @!attribute [rw] vnf_instance_id
|
2170
|
+
# ID of the network function instance.
|
2171
|
+
#
|
2172
|
+
# A network function instance is a function in a function package .
|
2173
|
+
# @return [String]
|
2174
|
+
#
|
2175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UpdateSolNetworkModify AWS API Documentation
|
2176
|
+
#
|
2177
|
+
class UpdateSolNetworkModify < Struct.new(
|
2178
|
+
:vnf_configurable_properties,
|
2179
|
+
:vnf_instance_id)
|
2180
|
+
SENSITIVE = []
|
2181
|
+
include Aws::Structure
|
2182
|
+
end
|
2183
|
+
|
2184
|
+
# @!attribute [rw] nsd_info_id
|
2185
|
+
# ID of the network service descriptor in the network package.
|
2186
|
+
# @return [String]
|
2187
|
+
#
|
2188
|
+
# @!attribute [rw] nsd_operational_state
|
2189
|
+
# Operational state of the network service descriptor in the network
|
2190
|
+
# package.
|
2191
|
+
# @return [String]
|
2192
|
+
#
|
2193
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UpdateSolNetworkPackageInput AWS API Documentation
|
2194
|
+
#
|
2195
|
+
class UpdateSolNetworkPackageInput < Struct.new(
|
2196
|
+
:nsd_info_id,
|
2197
|
+
:nsd_operational_state)
|
2198
|
+
SENSITIVE = []
|
2199
|
+
include Aws::Structure
|
2200
|
+
end
|
2201
|
+
|
2202
|
+
# @!attribute [rw] nsd_operational_state
|
2203
|
+
# Operational state of the network service descriptor in the network
|
2204
|
+
# package.
|
2205
|
+
# @return [String]
|
2206
|
+
#
|
2207
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UpdateSolNetworkPackageOutput AWS API Documentation
|
2208
|
+
#
|
2209
|
+
class UpdateSolNetworkPackageOutput < Struct.new(
|
2210
|
+
:nsd_operational_state)
|
2211
|
+
SENSITIVE = []
|
2212
|
+
include Aws::Structure
|
2213
|
+
end
|
2214
|
+
|
2215
|
+
# @!attribute [rw] content_type
|
2216
|
+
# Function package content type.
|
2217
|
+
# @return [String]
|
2218
|
+
#
|
2219
|
+
# @!attribute [rw] file
|
2220
|
+
# Function package file.
|
2221
|
+
# @return [String]
|
2222
|
+
#
|
2223
|
+
# @!attribute [rw] vnf_pkg_id
|
2224
|
+
# Function package ID.
|
2225
|
+
# @return [String]
|
2226
|
+
#
|
2227
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ValidateSolFunctionPackageContentInput AWS API Documentation
|
2228
|
+
#
|
2229
|
+
class ValidateSolFunctionPackageContentInput < Struct.new(
|
2230
|
+
:content_type,
|
2231
|
+
:file,
|
2232
|
+
:vnf_pkg_id)
|
2233
|
+
SENSITIVE = []
|
2234
|
+
include Aws::Structure
|
2235
|
+
end
|
2236
|
+
|
2237
|
+
# Validates function package content metadata.
|
2238
|
+
#
|
2239
|
+
# A function package is a .zip file in CSAR (Cloud Service Archive)
|
2240
|
+
# format that contains a network function (an ETSI standard
|
2241
|
+
# telecommunication application) and function package descriptor that
|
2242
|
+
# uses the TOSCA standard to describe how the network functions should
|
2243
|
+
# run on your network.
|
2244
|
+
#
|
2245
|
+
# @!attribute [rw] vnfd
|
2246
|
+
# Metadata for function package artifacts.
|
2247
|
+
#
|
2248
|
+
# Artifacts are the contents of the package descriptor file and the
|
2249
|
+
# state of the package.
|
2250
|
+
# @return [Types::FunctionArtifactMeta]
|
2251
|
+
#
|
2252
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ValidateSolFunctionPackageContentMetadata AWS API Documentation
|
2253
|
+
#
|
2254
|
+
class ValidateSolFunctionPackageContentMetadata < Struct.new(
|
2255
|
+
:vnfd)
|
2256
|
+
SENSITIVE = []
|
2257
|
+
include Aws::Structure
|
2258
|
+
end
|
2259
|
+
|
2260
|
+
# @!attribute [rw] id
|
2261
|
+
# Function package ID.
|
2262
|
+
# @return [String]
|
2263
|
+
#
|
2264
|
+
# @!attribute [rw] metadata
|
2265
|
+
# Function package metadata.
|
2266
|
+
# @return [Types::ValidateSolFunctionPackageContentMetadata]
|
2267
|
+
#
|
2268
|
+
# @!attribute [rw] vnf_product_name
|
2269
|
+
# Network function product name.
|
2270
|
+
# @return [String]
|
2271
|
+
#
|
2272
|
+
# @!attribute [rw] vnf_provider
|
2273
|
+
# Network function provider.
|
2274
|
+
# @return [String]
|
2275
|
+
#
|
2276
|
+
# @!attribute [rw] vnfd_id
|
2277
|
+
# Function package descriptor ID.
|
2278
|
+
# @return [String]
|
2279
|
+
#
|
2280
|
+
# @!attribute [rw] vnfd_version
|
2281
|
+
# Function package descriptor version.
|
2282
|
+
# @return [String]
|
2283
|
+
#
|
2284
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ValidateSolFunctionPackageContentOutput AWS API Documentation
|
2285
|
+
#
|
2286
|
+
class ValidateSolFunctionPackageContentOutput < Struct.new(
|
2287
|
+
:id,
|
2288
|
+
:metadata,
|
2289
|
+
:vnf_product_name,
|
2290
|
+
:vnf_provider,
|
2291
|
+
:vnfd_id,
|
2292
|
+
:vnfd_version)
|
2293
|
+
SENSITIVE = []
|
2294
|
+
include Aws::Structure
|
2295
|
+
end
|
2296
|
+
|
2297
|
+
# @!attribute [rw] content_type
|
2298
|
+
# Network package content type.
|
2299
|
+
# @return [String]
|
2300
|
+
#
|
2301
|
+
# @!attribute [rw] file
|
2302
|
+
# Network package file.
|
2303
|
+
# @return [String]
|
2304
|
+
#
|
2305
|
+
# @!attribute [rw] nsd_info_id
|
2306
|
+
# Network service descriptor file.
|
2307
|
+
# @return [String]
|
2308
|
+
#
|
2309
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ValidateSolNetworkPackageContentInput AWS API Documentation
|
2310
|
+
#
|
2311
|
+
class ValidateSolNetworkPackageContentInput < Struct.new(
|
2312
|
+
:content_type,
|
2313
|
+
:file,
|
2314
|
+
:nsd_info_id)
|
2315
|
+
SENSITIVE = []
|
2316
|
+
include Aws::Structure
|
2317
|
+
end
|
2318
|
+
|
2319
|
+
# Validates network package content metadata.
|
2320
|
+
#
|
2321
|
+
# A network package is a .zip file in CSAR (Cloud Service Archive)
|
2322
|
+
# format defines the function packages you want to deploy and the Amazon
|
2323
|
+
# Web Services infrastructure you want to deploy them on.
|
2324
|
+
#
|
2325
|
+
# @!attribute [rw] nsd
|
2326
|
+
# Metadata for network package artifacts.
|
2327
|
+
#
|
2328
|
+
# Artifacts are the contents of the package descriptor file and the
|
2329
|
+
# state of the package.
|
2330
|
+
# @return [Types::NetworkArtifactMeta]
|
2331
|
+
#
|
2332
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ValidateSolNetworkPackageContentMetadata AWS API Documentation
|
2333
|
+
#
|
2334
|
+
class ValidateSolNetworkPackageContentMetadata < Struct.new(
|
2335
|
+
:nsd)
|
2336
|
+
SENSITIVE = []
|
2337
|
+
include Aws::Structure
|
2338
|
+
end
|
2339
|
+
|
2340
|
+
# @!attribute [rw] arn
|
2341
|
+
# Network package ARN.
|
2342
|
+
# @return [String]
|
2343
|
+
#
|
2344
|
+
# @!attribute [rw] id
|
2345
|
+
# Network package ID.
|
2346
|
+
# @return [String]
|
2347
|
+
#
|
2348
|
+
# @!attribute [rw] metadata
|
2349
|
+
# Network package metadata.
|
2350
|
+
# @return [Types::ValidateSolNetworkPackageContentMetadata]
|
2351
|
+
#
|
2352
|
+
# @!attribute [rw] nsd_id
|
2353
|
+
# Network service descriptor ID.
|
2354
|
+
# @return [String]
|
2355
|
+
#
|
2356
|
+
# @!attribute [rw] nsd_name
|
2357
|
+
# Network service descriptor name.
|
2358
|
+
# @return [String]
|
2359
|
+
#
|
2360
|
+
# @!attribute [rw] nsd_version
|
2361
|
+
# Network service descriptor version.
|
2362
|
+
# @return [String]
|
2363
|
+
#
|
2364
|
+
# @!attribute [rw] vnf_pkg_ids
|
2365
|
+
# Function package IDs.
|
2366
|
+
# @return [Array<String>]
|
2367
|
+
#
|
2368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ValidateSolNetworkPackageContentOutput AWS API Documentation
|
2369
|
+
#
|
2370
|
+
class ValidateSolNetworkPackageContentOutput < Struct.new(
|
2371
|
+
:arn,
|
2372
|
+
:id,
|
2373
|
+
:metadata,
|
2374
|
+
:nsd_id,
|
2375
|
+
:nsd_name,
|
2376
|
+
:nsd_version,
|
2377
|
+
:vnf_pkg_ids)
|
2378
|
+
SENSITIVE = []
|
2379
|
+
include Aws::Structure
|
2380
|
+
end
|
2381
|
+
|
2382
|
+
# Unable to process the request because the client provided input failed
|
2383
|
+
# to satisfy request constraints.
|
2384
|
+
#
|
2385
|
+
# @!attribute [rw] message
|
2386
|
+
# @return [String]
|
2387
|
+
#
|
2388
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ValidationException AWS API Documentation
|
2389
|
+
#
|
2390
|
+
class ValidationException < Struct.new(
|
2391
|
+
:message)
|
2392
|
+
SENSITIVE = []
|
2393
|
+
include Aws::Structure
|
2394
|
+
end
|
2395
|
+
|
2396
|
+
end
|
2397
|
+
end
|