aws-sdk-tnb 1.16.0 → 1.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7962136eff239bf9735596bdd25055694cd68b30e6661816eada2a13c7d9b8b2
4
- data.tar.gz: 32576bb13b3678f8b98e668dbb2d6e4b2d2a37d4a75afd42234da4cc190223a3
3
+ metadata.gz: 70ceb1b346e81d98dc2c5a4a15290416f2201f1409d25d9a0be6abbc92335d17
4
+ data.tar.gz: 3d7637a1660708e1b584df98f2a020c7c2e07501b5fede2a05e406b94a88f538
5
5
  SHA512:
6
- metadata.gz: e6b00178cc671b5eaf4a3a50c139a66713650cb5afa4dcaf338b02ddb4d0936b25746bdb865d0f78e89b5da090965ad9b4bd95e58657200a5c208d32652881b5
7
- data.tar.gz: 9918b125b179ea30558bb73bf998ec2dfee542e578eea7e986ae11a1ecf19cf0c0dfec7be6fd3c5a093a694c9f78f0fbd83d989057597885669da1eda0d3bfab
6
+ metadata.gz: d4fe8d9f38168ae3aad56f51486b203cca68387f41dc646336108a158fea9d75e1355b2b3cc5909e3831396f03dc2eb8388a44c731abcdbae5cf1f5b89bad987
7
+ data.tar.gz: 05ceb5793d312cd45d72dbb3665f1282c1a6b38545dea933f1c03cf87770f425dc86ed391d880c0f6ce9dc4943e0bb11d7a4153bac38b2d24861cc3711e8b117
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.0 (2024-07-30)
5
+ ------------------
6
+
7
+ * Feature - This release adds Network Service Update, through which customers will be able to update their instantiated networks to a new network package. See the documentation for limitations. The release also enhances the Get network operation API to return parameter overrides used during the operation.
8
+
9
+ 1.17.0 (2024-07-02)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.16.0 (2024-06-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.18.0
@@ -312,6 +312,15 @@ module Aws::Tnb
312
312
  #
313
313
  # @option options [String] :session_token
314
314
  #
315
+ # @option options [Array] :sigv4a_signing_region_set
316
+ # A list of regions that should be signed with SigV4a signing. When
317
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
318
+ # in the following locations:
319
+ #
320
+ # * `Aws.config[:sigv4a_signing_region_set]`
321
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
322
+ # * `~/.aws/config`
323
+ #
315
324
  # @option options [Boolean] :stub_responses (false)
316
325
  # Causes the client to return stubbed responses. By default
317
326
  # fake responses are generated and returned. You can specify
@@ -741,7 +750,7 @@ module Aws::Tnb
741
750
  end
742
751
 
743
752
  # Gets the details of a network function instance, including the
744
- # instantation state and metadata from the function package descriptor
753
+ # instantiation state and metadata from the function package descriptor
745
754
  # in the network function package.
746
755
  #
747
756
  # A network function instance is a function in a function package .
@@ -983,7 +992,7 @@ module Aws::Tnb
983
992
  # resp.metadata.last_modified #=> Time
984
993
  # resp.ns_instance_description #=> String
985
994
  # resp.ns_instance_name #=> String
986
- # resp.ns_state #=> String, one of "INSTANTIATED", "NOT_INSTANTIATED", "IMPAIRED", "STOPPED", "DELETED", "INSTANTIATE_IN_PROGRESS", "UPDATE_IN_PROGRESS", "TERMINATE_IN_PROGRESS"
995
+ # resp.ns_state #=> String, one of "INSTANTIATED", "NOT_INSTANTIATED", "UPDATED", "IMPAIRED", "UPDATE_FAILED", "STOPPED", "DELETED", "INSTANTIATE_IN_PROGRESS", "INTENT_TO_UPDATE_IN_PROGRESS", "UPDATE_IN_PROGRESS", "TERMINATE_IN_PROGRESS"
987
996
  # resp.nsd_id #=> String
988
997
  # resp.nsd_info_id #=> String
989
998
  # resp.tags #=> Hash
@@ -1018,6 +1027,7 @@ module Aws::Tnb
1018
1027
  # * {Types::GetSolNetworkOperationOutput#operation_state #operation_state} => String
1019
1028
  # * {Types::GetSolNetworkOperationOutput#tags #tags} => Hash<String,String>
1020
1029
  # * {Types::GetSolNetworkOperationOutput#tasks #tasks} => Array<Types::GetSolNetworkOperationTaskDetails>
1030
+ # * {Types::GetSolNetworkOperationOutput#update_type #update_type} => String
1021
1031
  #
1022
1032
  # @example Request syntax with placeholder values
1023
1033
  #
@@ -1033,7 +1043,10 @@ module Aws::Tnb
1033
1043
  # resp.id #=> String
1034
1044
  # resp.lcm_operation_type #=> String, one of "INSTANTIATE", "UPDATE", "TERMINATE"
1035
1045
  # resp.metadata.created_at #=> Time
1046
+ # resp.metadata.instantiate_metadata.nsd_info_id #=> String
1036
1047
  # resp.metadata.last_modified #=> Time
1048
+ # resp.metadata.modify_vnf_info_metadata.vnf_instance_id #=> String
1049
+ # resp.metadata.update_ns_metadata.nsd_info_id #=> String
1037
1050
  # resp.ns_instance_id #=> String
1038
1051
  # resp.operation_state #=> String, one of "PROCESSING", "COMPLETED", "FAILED", "CANCELLING", "CANCELLED"
1039
1052
  # resp.tags #=> Hash
@@ -1047,6 +1060,7 @@ module Aws::Tnb
1047
1060
  # resp.tasks[0].task_name #=> String
1048
1061
  # resp.tasks[0].task_start_time #=> Time
1049
1062
  # resp.tasks[0].task_status #=> String, one of "SCHEDULED", "STARTED", "IN_PROGRESS", "COMPLETED", "ERROR", "SKIPPED", "CANCELLED"
1063
+ # resp.update_type #=> String, one of "MODIFY_VNF_INFORMATION", "UPDATE_NS"
1050
1064
  #
1051
1065
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkOperation AWS API Documentation
1052
1066
  #
@@ -1223,9 +1237,10 @@ module Aws::Tnb
1223
1237
  # @option params [Hash<String,String>] :tags
1224
1238
  # A tag is a label that you assign to an Amazon Web Services resource.
1225
1239
  # Each tag consists of a key and an optional value. When you use this
1226
- # API, the tags are transferred to the network operation that is
1227
- # created. Use tags to search and filter your resources or track your
1228
- # Amazon Web Services costs.
1240
+ # API, the tags are only applied to the network operation that is
1241
+ # created. These tags are not applied to the network instance. Use tags
1242
+ # to search and filter your resources or track your Amazon Web Services
1243
+ # costs.
1229
1244
  #
1230
1245
  # @return [Types::InstantiateSolNetworkInstanceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1231
1246
  #
@@ -1394,7 +1409,7 @@ module Aws::Tnb
1394
1409
  # resp.network_instances[0].metadata.last_modified #=> Time
1395
1410
  # resp.network_instances[0].ns_instance_description #=> String
1396
1411
  # resp.network_instances[0].ns_instance_name #=> String
1397
- # resp.network_instances[0].ns_state #=> String, one of "INSTANTIATED", "NOT_INSTANTIATED", "IMPAIRED", "STOPPED", "DELETED", "INSTANTIATE_IN_PROGRESS", "UPDATE_IN_PROGRESS", "TERMINATE_IN_PROGRESS"
1412
+ # resp.network_instances[0].ns_state #=> String, one of "INSTANTIATED", "NOT_INSTANTIATED", "UPDATED", "IMPAIRED", "UPDATE_FAILED", "STOPPED", "DELETED", "INSTANTIATE_IN_PROGRESS", "INTENT_TO_UPDATE_IN_PROGRESS", "UPDATE_IN_PROGRESS", "TERMINATE_IN_PROGRESS"
1398
1413
  # resp.network_instances[0].nsd_id #=> String
1399
1414
  # resp.network_instances[0].nsd_info_id #=> String
1400
1415
  # resp.next_token #=> String
@@ -1420,6 +1435,10 @@ module Aws::Tnb
1420
1435
  # @option params [String] :next_token
1421
1436
  # The token for the next page of results.
1422
1437
  #
1438
+ # @option params [String] :ns_instance_id
1439
+ # Network instance id filter, to retrieve network operations associated
1440
+ # to a network instance.
1441
+ #
1423
1442
  # @return [Types::ListSolNetworkOperationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1424
1443
  #
1425
1444
  # * {Types::ListSolNetworkOperationsOutput#network_operations #network_operations} => Array&lt;Types::ListSolNetworkOperationsInfo&gt;
@@ -1432,6 +1451,7 @@ module Aws::Tnb
1432
1451
  # resp = client.list_sol_network_operations({
1433
1452
  # max_results: 1,
1434
1453
  # next_token: "PaginationToken",
1454
+ # ns_instance_id: "NsInstanceId",
1435
1455
  # })
1436
1456
  #
1437
1457
  # @example Response structure
@@ -1444,8 +1464,11 @@ module Aws::Tnb
1444
1464
  # resp.network_operations[0].lcm_operation_type #=> String, one of "INSTANTIATE", "UPDATE", "TERMINATE"
1445
1465
  # resp.network_operations[0].metadata.created_at #=> Time
1446
1466
  # resp.network_operations[0].metadata.last_modified #=> Time
1467
+ # resp.network_operations[0].metadata.nsd_info_id #=> String
1468
+ # resp.network_operations[0].metadata.vnf_instance_id #=> String
1447
1469
  # resp.network_operations[0].ns_instance_id #=> String
1448
1470
  # resp.network_operations[0].operation_state #=> String, one of "PROCESSING", "COMPLETED", "FAILED", "CANCELLING", "CANCELLED"
1471
+ # resp.network_operations[0].update_type #=> String, one of "MODIFY_VNF_INFORMATION", "UPDATE_NS"
1449
1472
  # resp.next_token #=> String
1450
1473
  #
1451
1474
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkOperations AWS API Documentation
@@ -1699,9 +1722,10 @@ module Aws::Tnb
1699
1722
  # @option params [Hash<String,String>] :tags
1700
1723
  # A tag is a label that you assign to an Amazon Web Services resource.
1701
1724
  # Each tag consists of a key and an optional value. When you use this
1702
- # API, the tags are transferred to the network operation that is
1703
- # created. Use tags to search and filter your resources or track your
1704
- # Amazon Web Services costs.
1725
+ # API, the tags are only applied to the network operation that is
1726
+ # created. These tags are not applied to the network instance. Use tags
1727
+ # to search and filter your resources or track your Amazon Web Services
1728
+ # costs.
1705
1729
  #
1706
1730
  # @return [Types::TerminateSolNetworkInstanceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1707
1731
  #
@@ -1807,23 +1831,42 @@ module Aws::Tnb
1807
1831
  # TNB that can be deployed and on which life-cycle operations (like
1808
1832
  # terminate, update, and delete) can be performed.
1809
1833
  #
1834
+ # Choose the *updateType* parameter to target the necessary update of
1835
+ # the network instance.
1836
+ #
1810
1837
  # @option params [Types::UpdateSolNetworkModify] :modify_vnf_info_data
1811
1838
  # Identifies the network function information parameters and/or the
1812
1839
  # configurable properties of the network function to be modified.
1813
1840
  #
1841
+ # Include this property only if the update type is
1842
+ # `MODIFY_VNF_INFORMATION`.
1843
+ #
1814
1844
  # @option params [required, String] :ns_instance_id
1815
1845
  # ID of the network instance.
1816
1846
  #
1817
1847
  # @option params [Hash<String,String>] :tags
1818
1848
  # A tag is a label that you assign to an Amazon Web Services resource.
1819
1849
  # Each tag consists of a key and an optional value. When you use this
1820
- # API, the tags are transferred to the network operation that is
1821
- # created. Use tags to search and filter your resources or track your
1822
- # Amazon Web Services costs.
1850
+ # API, the tags are only applied to the network operation that is
1851
+ # created. These tags are not applied to the network instance. Use tags
1852
+ # to search and filter your resources or track your Amazon Web Services
1853
+ # costs.
1854
+ #
1855
+ # @option params [Types::UpdateSolNetworkServiceData] :update_ns
1856
+ # Identifies the network service descriptor and the configurable
1857
+ # properties of the descriptor, to be used for the update.
1858
+ #
1859
+ # Include this property only if the update type is `UPDATE_NS`.
1823
1860
  #
1824
1861
  # @option params [required, String] :update_type
1825
1862
  # The type of update.
1826
1863
  #
1864
+ # * Use the `MODIFY_VNF_INFORMATION` update type, to update a specific
1865
+ # network function configuration, in the network instance.
1866
+ #
1867
+ # * Use the `UPDATE_NS` update type, to update the network instance to a
1868
+ # new network service descriptor.
1869
+ #
1827
1870
  # @return [Types::UpdateSolNetworkInstanceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1828
1871
  #
1829
1872
  # * {Types::UpdateSolNetworkInstanceOutput#ns_lcm_op_occ_id #ns_lcm_op_occ_id} => String
@@ -1841,7 +1884,12 @@ module Aws::Tnb
1841
1884
  # tags: {
1842
1885
  # "TagKey" => "TagValue",
1843
1886
  # },
1844
- # update_type: "MODIFY_VNF_INFORMATION", # required, accepts MODIFY_VNF_INFORMATION
1887
+ # update_ns: {
1888
+ # additional_params_for_ns: {
1889
+ # },
1890
+ # nsd_info_id: "NsdInfoId", # required
1891
+ # },
1892
+ # update_type: "MODIFY_VNF_INFORMATION", # required, accepts MODIFY_VNF_INFORMATION, UPDATE_NS
1845
1893
  # })
1846
1894
  #
1847
1895
  # @example Response structure
@@ -2035,7 +2083,7 @@ module Aws::Tnb
2035
2083
  params: params,
2036
2084
  config: config)
2037
2085
  context[:gem_name] = 'aws-sdk-tnb'
2038
- context[:gem_version] = '1.16.0'
2086
+ context[:gem_version] = '1.18.0'
2039
2087
  Seahorse::Client::Request.new(handlers, context)
2040
2088
  end
2041
2089
 
@@ -64,6 +64,7 @@ module Aws::Tnb
64
64
  GetSolVnfcResourceInfo = Shapes::StructureShape.new(name: 'GetSolVnfcResourceInfo')
65
65
  GetSolVnfcResourceInfoList = Shapes::ListShape.new(name: 'GetSolVnfcResourceInfoList')
66
66
  GetSolVnfcResourceInfoMetadata = Shapes::StructureShape.new(name: 'GetSolVnfcResourceInfoMetadata')
67
+ InstantiateMetadata = Shapes::StructureShape.new(name: 'InstantiateMetadata')
67
68
  InstantiateSolNetworkInstanceInput = Shapes::StructureShape.new(name: 'InstantiateSolNetworkInstanceInput')
68
69
  InstantiateSolNetworkInstanceOutput = Shapes::StructureShape.new(name: 'InstantiateSolNetworkInstanceOutput')
69
70
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
@@ -101,6 +102,7 @@ module Aws::Tnb
101
102
  ListSolNetworkPackagesOutput = Shapes::StructureShape.new(name: 'ListSolNetworkPackagesOutput')
102
103
  ListTagsForResourceInput = Shapes::StructureShape.new(name: 'ListTagsForResourceInput')
103
104
  ListTagsForResourceOutput = Shapes::StructureShape.new(name: 'ListTagsForResourceOutput')
105
+ ModifyVnfInfoMetadata = Shapes::StructureShape.new(name: 'ModifyVnfInfoMetadata')
104
106
  NetworkArtifactMeta = Shapes::StructureShape.new(name: 'NetworkArtifactMeta')
105
107
  NsInstanceArn = Shapes::StringShape.new(name: 'NsInstanceArn')
106
108
  NsInstanceId = Shapes::StringShape.new(name: 'NsInstanceId')
@@ -127,6 +129,7 @@ module Aws::Tnb
127
129
  PutSolNetworkPackageContentMetadata = Shapes::StructureShape.new(name: 'PutSolNetworkPackageContentMetadata')
128
130
  PutSolNetworkPackageContentOutput = Shapes::StructureShape.new(name: 'PutSolNetworkPackageContentOutput')
129
131
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
132
+ SensitiveBlob = Shapes::BlobShape.new(name: 'SensitiveBlob')
130
133
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
131
134
  String = Shapes::StringShape.new(name: 'String')
132
135
  StringMap = Shapes::MapShape.new(name: 'StringMap')
@@ -145,6 +148,7 @@ module Aws::Tnb
145
148
  ToscaOverride = Shapes::StructureShape.new(name: 'ToscaOverride')
146
149
  UntagResourceInput = Shapes::StructureShape.new(name: 'UntagResourceInput')
147
150
  UntagResourceOutput = Shapes::StructureShape.new(name: 'UntagResourceOutput')
151
+ UpdateNsMetadata = Shapes::StructureShape.new(name: 'UpdateNsMetadata')
148
152
  UpdateSolFunctionPackageInput = Shapes::StructureShape.new(name: 'UpdateSolFunctionPackageInput')
149
153
  UpdateSolFunctionPackageOutput = Shapes::StructureShape.new(name: 'UpdateSolFunctionPackageOutput')
150
154
  UpdateSolNetworkInstanceInput = Shapes::StructureShape.new(name: 'UpdateSolNetworkInstanceInput')
@@ -152,6 +156,7 @@ module Aws::Tnb
152
156
  UpdateSolNetworkModify = Shapes::StructureShape.new(name: 'UpdateSolNetworkModify')
153
157
  UpdateSolNetworkPackageInput = Shapes::StructureShape.new(name: 'UpdateSolNetworkPackageInput')
154
158
  UpdateSolNetworkPackageOutput = Shapes::StructureShape.new(name: 'UpdateSolNetworkPackageOutput')
159
+ UpdateSolNetworkServiceData = Shapes::StructureShape.new(name: 'UpdateSolNetworkServiceData')
155
160
  UpdateSolNetworkType = Shapes::StringShape.new(name: 'UpdateSolNetworkType')
156
161
  UsageState = Shapes::StringShape.new(name: 'UsageState')
157
162
  ValidateSolFunctionPackageContentInput = Shapes::StructureShape.new(name: 'ValidateSolFunctionPackageContentInput')
@@ -315,7 +320,10 @@ module Aws::Tnb
315
320
  GetSolNetworkOperationInput.struct_class = Types::GetSolNetworkOperationInput
316
321
 
317
322
  GetSolNetworkOperationMetadata.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createdAt"))
323
+ GetSolNetworkOperationMetadata.add_member(:instantiate_metadata, Shapes::ShapeRef.new(shape: InstantiateMetadata, location_name: "instantiateMetadata"))
318
324
  GetSolNetworkOperationMetadata.add_member(:last_modified, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "lastModified"))
325
+ GetSolNetworkOperationMetadata.add_member(:modify_vnf_info_metadata, Shapes::ShapeRef.new(shape: ModifyVnfInfoMetadata, location_name: "modifyVnfInfoMetadata"))
326
+ GetSolNetworkOperationMetadata.add_member(:update_ns_metadata, Shapes::ShapeRef.new(shape: UpdateNsMetadata, location_name: "updateNsMetadata"))
319
327
  GetSolNetworkOperationMetadata.struct_class = Types::GetSolNetworkOperationMetadata
320
328
 
321
329
  GetSolNetworkOperationOutput.add_member(:arn, Shapes::ShapeRef.new(shape: NsLcmOpOccArn, required: true, location_name: "arn"))
@@ -327,6 +335,7 @@ module Aws::Tnb
327
335
  GetSolNetworkOperationOutput.add_member(:operation_state, Shapes::ShapeRef.new(shape: NsLcmOperationState, location_name: "operationState"))
328
336
  GetSolNetworkOperationOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
329
337
  GetSolNetworkOperationOutput.add_member(:tasks, Shapes::ShapeRef.new(shape: GetSolNetworkOperationTasksList, location_name: "tasks"))
338
+ GetSolNetworkOperationOutput.add_member(:update_type, Shapes::ShapeRef.new(shape: UpdateSolNetworkType, location_name: "updateType"))
330
339
  GetSolNetworkOperationOutput.struct_class = Types::GetSolNetworkOperationOutput
331
340
 
332
341
  GetSolNetworkOperationTaskDetails.add_member(:task_context, Shapes::ShapeRef.new(shape: StringMap, location_name: "taskContext"))
@@ -393,6 +402,10 @@ module Aws::Tnb
393
402
  GetSolVnfcResourceInfoMetadata.add_member(:node_group, Shapes::ShapeRef.new(shape: String, location_name: "nodeGroup"))
394
403
  GetSolVnfcResourceInfoMetadata.struct_class = Types::GetSolVnfcResourceInfoMetadata
395
404
 
405
+ InstantiateMetadata.add_member(:additional_params_for_ns, Shapes::ShapeRef.new(shape: Document, location_name: "additionalParamsForNs"))
406
+ InstantiateMetadata.add_member(:nsd_info_id, Shapes::ShapeRef.new(shape: NsdInfoId, required: true, location_name: "nsdInfoId"))
407
+ InstantiateMetadata.struct_class = Types::InstantiateMetadata
408
+
396
409
  InstantiateSolNetworkInstanceInput.add_member(:additional_params_for_ns, Shapes::ShapeRef.new(shape: Document, location_name: "additionalParamsForNs"))
397
410
  InstantiateSolNetworkInstanceInput.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "dry_run"))
398
411
  InstantiateSolNetworkInstanceInput.add_member(:ns_instance_id, Shapes::ShapeRef.new(shape: NsInstanceId, required: true, location: "uri", location_name: "nsInstanceId"))
@@ -490,14 +503,18 @@ module Aws::Tnb
490
503
  ListSolNetworkOperationsInfo.add_member(:metadata, Shapes::ShapeRef.new(shape: ListSolNetworkOperationsMetadata, location_name: "metadata"))
491
504
  ListSolNetworkOperationsInfo.add_member(:ns_instance_id, Shapes::ShapeRef.new(shape: NsInstanceId, required: true, location_name: "nsInstanceId"))
492
505
  ListSolNetworkOperationsInfo.add_member(:operation_state, Shapes::ShapeRef.new(shape: NsLcmOperationState, required: true, location_name: "operationState"))
506
+ ListSolNetworkOperationsInfo.add_member(:update_type, Shapes::ShapeRef.new(shape: UpdateSolNetworkType, location_name: "updateType"))
493
507
  ListSolNetworkOperationsInfo.struct_class = Types::ListSolNetworkOperationsInfo
494
508
 
495
509
  ListSolNetworkOperationsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListSolNetworkOperationsInputMaxResultsInteger, location: "querystring", location_name: "max_results"))
496
510
  ListSolNetworkOperationsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextpage_opaque_marker"))
511
+ ListSolNetworkOperationsInput.add_member(:ns_instance_id, Shapes::ShapeRef.new(shape: NsInstanceId, location: "querystring", location_name: "nsInstanceId"))
497
512
  ListSolNetworkOperationsInput.struct_class = Types::ListSolNetworkOperationsInput
498
513
 
499
514
  ListSolNetworkOperationsMetadata.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createdAt"))
500
515
  ListSolNetworkOperationsMetadata.add_member(:last_modified, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "lastModified"))
516
+ ListSolNetworkOperationsMetadata.add_member(:nsd_info_id, Shapes::ShapeRef.new(shape: NsdInfoId, location_name: "nsdInfoId"))
517
+ ListSolNetworkOperationsMetadata.add_member(:vnf_instance_id, Shapes::ShapeRef.new(shape: VnfInstanceId, location_name: "vnfInstanceId"))
501
518
  ListSolNetworkOperationsMetadata.struct_class = Types::ListSolNetworkOperationsMetadata
502
519
 
503
520
  ListSolNetworkOperationsOutput.add_member(:network_operations, Shapes::ShapeRef.new(shape: ListSolNetworkOperationsResources, location_name: "networkOperations"))
@@ -540,6 +557,10 @@ module Aws::Tnb
540
557
  ListTagsForResourceOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, required: true, location_name: "tags"))
541
558
  ListTagsForResourceOutput.struct_class = Types::ListTagsForResourceOutput
542
559
 
560
+ ModifyVnfInfoMetadata.add_member(:vnf_configurable_properties, Shapes::ShapeRef.new(shape: Document, required: true, location_name: "vnfConfigurableProperties"))
561
+ ModifyVnfInfoMetadata.add_member(:vnf_instance_id, Shapes::ShapeRef.new(shape: VnfInstanceId, required: true, location_name: "vnfInstanceId"))
562
+ ModifyVnfInfoMetadata.struct_class = Types::ModifyVnfInfoMetadata
563
+
543
564
  NetworkArtifactMeta.add_member(:overrides, Shapes::ShapeRef.new(shape: OverrideList, location_name: "overrides"))
544
565
  NetworkArtifactMeta.struct_class = Types::NetworkArtifactMeta
545
566
 
@@ -550,7 +571,7 @@ module Aws::Tnb
550
571
  ProblemDetails.struct_class = Types::ProblemDetails
551
572
 
552
573
  PutSolFunctionPackageContentInput.add_member(:content_type, Shapes::ShapeRef.new(shape: PackageContentType, location: "header", location_name: "Content-Type"))
553
- PutSolFunctionPackageContentInput.add_member(:file, Shapes::ShapeRef.new(shape: Blob, required: true, location_name: "file"))
574
+ PutSolFunctionPackageContentInput.add_member(:file, Shapes::ShapeRef.new(shape: SensitiveBlob, required: true, location_name: "file"))
554
575
  PutSolFunctionPackageContentInput.add_member(:vnf_pkg_id, Shapes::ShapeRef.new(shape: VnfPkgId, required: true, location: "uri", location_name: "vnfPkgId"))
555
576
  PutSolFunctionPackageContentInput.struct_class = Types::PutSolFunctionPackageContentInput
556
577
  PutSolFunctionPackageContentInput[:payload] = :file
@@ -568,7 +589,7 @@ module Aws::Tnb
568
589
  PutSolFunctionPackageContentOutput.struct_class = Types::PutSolFunctionPackageContentOutput
569
590
 
570
591
  PutSolNetworkPackageContentInput.add_member(:content_type, Shapes::ShapeRef.new(shape: PackageContentType, location: "header", location_name: "Content-Type"))
571
- PutSolNetworkPackageContentInput.add_member(:file, Shapes::ShapeRef.new(shape: Blob, required: true, location_name: "file"))
592
+ PutSolNetworkPackageContentInput.add_member(:file, Shapes::ShapeRef.new(shape: SensitiveBlob, required: true, location_name: "file"))
572
593
  PutSolNetworkPackageContentInput.add_member(:nsd_info_id, Shapes::ShapeRef.new(shape: NsdInfoId, required: true, location: "uri", location_name: "nsdInfoId"))
573
594
  PutSolNetworkPackageContentInput.struct_class = Types::PutSolNetworkPackageContentInput
574
595
  PutSolNetworkPackageContentInput[:payload] = :file
@@ -627,6 +648,10 @@ module Aws::Tnb
627
648
 
628
649
  UntagResourceOutput.struct_class = Types::UntagResourceOutput
629
650
 
651
+ UpdateNsMetadata.add_member(:additional_params_for_ns, Shapes::ShapeRef.new(shape: Document, location_name: "additionalParamsForNs"))
652
+ UpdateNsMetadata.add_member(:nsd_info_id, Shapes::ShapeRef.new(shape: NsdInfoId, required: true, location_name: "nsdInfoId"))
653
+ UpdateNsMetadata.struct_class = Types::UpdateNsMetadata
654
+
630
655
  UpdateSolFunctionPackageInput.add_member(:operational_state, Shapes::ShapeRef.new(shape: OperationalState, required: true, location_name: "operationalState"))
631
656
  UpdateSolFunctionPackageInput.add_member(:vnf_pkg_id, Shapes::ShapeRef.new(shape: VnfPkgId, required: true, location: "uri", location_name: "vnfPkgId"))
632
657
  UpdateSolFunctionPackageInput.struct_class = Types::UpdateSolFunctionPackageInput
@@ -637,6 +662,7 @@ module Aws::Tnb
637
662
  UpdateSolNetworkInstanceInput.add_member(:modify_vnf_info_data, Shapes::ShapeRef.new(shape: UpdateSolNetworkModify, location_name: "modifyVnfInfoData"))
638
663
  UpdateSolNetworkInstanceInput.add_member(:ns_instance_id, Shapes::ShapeRef.new(shape: NsInstanceId, required: true, location: "uri", location_name: "nsInstanceId"))
639
664
  UpdateSolNetworkInstanceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
665
+ UpdateSolNetworkInstanceInput.add_member(:update_ns, Shapes::ShapeRef.new(shape: UpdateSolNetworkServiceData, location_name: "updateNs"))
640
666
  UpdateSolNetworkInstanceInput.add_member(:update_type, Shapes::ShapeRef.new(shape: UpdateSolNetworkType, required: true, location_name: "updateType"))
641
667
  UpdateSolNetworkInstanceInput.struct_class = Types::UpdateSolNetworkInstanceInput
642
668
 
@@ -655,8 +681,12 @@ module Aws::Tnb
655
681
  UpdateSolNetworkPackageOutput.add_member(:nsd_operational_state, Shapes::ShapeRef.new(shape: NsdOperationalState, required: true, location_name: "nsdOperationalState"))
656
682
  UpdateSolNetworkPackageOutput.struct_class = Types::UpdateSolNetworkPackageOutput
657
683
 
684
+ UpdateSolNetworkServiceData.add_member(:additional_params_for_ns, Shapes::ShapeRef.new(shape: Document, location_name: "additionalParamsForNs"))
685
+ UpdateSolNetworkServiceData.add_member(:nsd_info_id, Shapes::ShapeRef.new(shape: NsdInfoId, required: true, location_name: "nsdInfoId"))
686
+ UpdateSolNetworkServiceData.struct_class = Types::UpdateSolNetworkServiceData
687
+
658
688
  ValidateSolFunctionPackageContentInput.add_member(:content_type, Shapes::ShapeRef.new(shape: PackageContentType, location: "header", location_name: "Content-Type"))
659
- ValidateSolFunctionPackageContentInput.add_member(:file, Shapes::ShapeRef.new(shape: Blob, required: true, location_name: "file"))
689
+ ValidateSolFunctionPackageContentInput.add_member(:file, Shapes::ShapeRef.new(shape: SensitiveBlob, required: true, location_name: "file"))
660
690
  ValidateSolFunctionPackageContentInput.add_member(:vnf_pkg_id, Shapes::ShapeRef.new(shape: VnfPkgId, required: true, location: "uri", location_name: "vnfPkgId"))
661
691
  ValidateSolFunctionPackageContentInput.struct_class = Types::ValidateSolFunctionPackageContentInput
662
692
  ValidateSolFunctionPackageContentInput[:payload] = :file
@@ -674,7 +704,7 @@ module Aws::Tnb
674
704
  ValidateSolFunctionPackageContentOutput.struct_class = Types::ValidateSolFunctionPackageContentOutput
675
705
 
676
706
  ValidateSolNetworkPackageContentInput.add_member(:content_type, Shapes::ShapeRef.new(shape: PackageContentType, location: "header", location_name: "Content-Type"))
677
- ValidateSolNetworkPackageContentInput.add_member(:file, Shapes::ShapeRef.new(shape: Blob, required: true, location_name: "file"))
707
+ ValidateSolNetworkPackageContentInput.add_member(:file, Shapes::ShapeRef.new(shape: SensitiveBlob, required: true, location_name: "file"))
678
708
  ValidateSolNetworkPackageContentInput.add_member(:nsd_info_id, Shapes::ShapeRef.new(shape: NsdInfoId, required: true, location: "uri", location_name: "nsdInfoId"))
679
709
  ValidateSolNetworkPackageContentInput.struct_class = Types::ValidateSolNetworkPackageContentInput
680
710
  ValidateSolNetworkPackageContentInput[:payload] = :file
@@ -705,9 +735,11 @@ module Aws::Tnb
705
735
 
706
736
  api.metadata = {
707
737
  "apiVersion" => "2008-10-21",
738
+ "auth" => ["aws.auth#sigv4"],
708
739
  "endpointPrefix" => "tnb",
709
740
  "jsonVersion" => "1.1",
710
741
  "protocol" => "rest-json",
742
+ "protocols" => ["rest-json"],
711
743
  "serviceFullName" => "AWS Telco Network Builder",
712
744
  "serviceId" => "tnb",
713
745
  "signatureVersion" => "v4",
@@ -32,7 +32,7 @@ module Aws::Tnb
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://tnb-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -717,15 +717,37 @@ module Aws::Tnb
717
717
  # The date that the resource was created.
718
718
  # @return [Time]
719
719
  #
720
+ # @!attribute [rw] instantiate_metadata
721
+ # Metadata related to the network operation occurrence for network
722
+ # instantiation. This is populated only if the lcmOperationType is
723
+ # `INSTANTIATE`.
724
+ # @return [Types::InstantiateMetadata]
725
+ #
720
726
  # @!attribute [rw] last_modified
721
727
  # The date that the resource was last modified.
722
728
  # @return [Time]
723
729
  #
730
+ # @!attribute [rw] modify_vnf_info_metadata
731
+ # Metadata related to the network operation occurrence for network
732
+ # function updates in a network instance. This is populated only if
733
+ # the lcmOperationType is `UPDATE` and the updateType is
734
+ # `MODIFY_VNF_INFORMATION`.
735
+ # @return [Types::ModifyVnfInfoMetadata]
736
+ #
737
+ # @!attribute [rw] update_ns_metadata
738
+ # Metadata related to the network operation occurrence for network
739
+ # instance updates. This is populated only if the lcmOperationType is
740
+ # `UPDATE` and the updateType is `UPDATE_NS`.
741
+ # @return [Types::UpdateNsMetadata]
742
+ #
724
743
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkOperationMetadata AWS API Documentation
725
744
  #
726
745
  class GetSolNetworkOperationMetadata < Struct.new(
727
746
  :created_at,
728
- :last_modified)
747
+ :instantiate_metadata,
748
+ :last_modified,
749
+ :modify_vnf_info_metadata,
750
+ :update_ns_metadata)
729
751
  SENSITIVE = []
730
752
  include Aws::Structure
731
753
  end
@@ -769,6 +791,11 @@ module Aws::Tnb
769
791
  # All tasks associated with this operation occurrence.
770
792
  # @return [Array<Types::GetSolNetworkOperationTaskDetails>]
771
793
  #
794
+ # @!attribute [rw] update_type
795
+ # Type of the update. Only present if the network operation
796
+ # lcmOperationType is `UPDATE`.
797
+ # @return [String]
798
+ #
772
799
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/GetSolNetworkOperationOutput AWS API Documentation
773
800
  #
774
801
  class GetSolNetworkOperationOutput < Struct.new(
@@ -780,7 +807,8 @@ module Aws::Tnb
780
807
  :ns_instance_id,
781
808
  :operation_state,
782
809
  :tags,
783
- :tasks)
810
+ :tasks,
811
+ :update_type)
784
812
  SENSITIVE = [:tags]
785
813
  include Aws::Structure
786
814
  end
@@ -1069,6 +1097,27 @@ module Aws::Tnb
1069
1097
  include Aws::Structure
1070
1098
  end
1071
1099
 
1100
+ # Metadata related to the configuration properties used during
1101
+ # instantiation of the network instance.
1102
+ #
1103
+ # @!attribute [rw] additional_params_for_ns
1104
+ # The configurable properties used during instantiation.
1105
+ # @return [Hash,Array,String,Numeric,Boolean]
1106
+ #
1107
+ # @!attribute [rw] nsd_info_id
1108
+ # The network service descriptor used for instantiating the network
1109
+ # instance.
1110
+ # @return [String]
1111
+ #
1112
+ # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/InstantiateMetadata AWS API Documentation
1113
+ #
1114
+ class InstantiateMetadata < Struct.new(
1115
+ :additional_params_for_ns,
1116
+ :nsd_info_id)
1117
+ SENSITIVE = []
1118
+ include Aws::Structure
1119
+ end
1120
+
1072
1121
  # @!attribute [rw] additional_params_for_ns
1073
1122
  # Provides values for the configurable properties.
1074
1123
  # @return [Hash,Array,String,Numeric,Boolean]
@@ -1087,9 +1136,10 @@ module Aws::Tnb
1087
1136
  # @!attribute [rw] tags
1088
1137
  # A tag is a label that you assign to an Amazon Web Services resource.
1089
1138
  # Each tag consists of a key and an optional value. When you use this
1090
- # API, the tags are transferred to the network operation that is
1091
- # created. Use tags to search and filter your resources or track your
1092
- # Amazon Web Services costs.
1139
+ # API, the tags are only applied to the network operation that is
1140
+ # created. These tags are not applied to the network instance. Use
1141
+ # tags to search and filter your resources or track your Amazon Web
1142
+ # Services costs.
1093
1143
  # @return [Hash<String,String>]
1094
1144
  #
1095
1145
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/InstantiateSolNetworkInstanceInput AWS API Documentation
@@ -1110,9 +1160,10 @@ module Aws::Tnb
1110
1160
  # @!attribute [rw] tags
1111
1161
  # A tag is a label that you assign to an Amazon Web Services resource.
1112
1162
  # Each tag consists of a key and an optional value. When you use this
1113
- # API, the tags are transferred to the network operation that is
1114
- # created. Use tags to search and filter your resources or track your
1115
- # Amazon Web Services costs.
1163
+ # API, the tags are only applied to the network operation that is
1164
+ # created. These tags are not applied to the network instance. Use
1165
+ # tags to search and filter your resources or track your Amazon Web
1166
+ # Services costs.
1116
1167
  # @return [Hash<String,String>]
1117
1168
  #
1118
1169
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/InstantiateSolNetworkInstanceOutput AWS API Documentation
@@ -1536,6 +1587,11 @@ module Aws::Tnb
1536
1587
  # The state of the network operation.
1537
1588
  # @return [String]
1538
1589
  #
1590
+ # @!attribute [rw] update_type
1591
+ # Type of the update. Only present if the network operation
1592
+ # lcmOperationType is `UPDATE`.
1593
+ # @return [String]
1594
+ #
1539
1595
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkOperationsInfo AWS API Documentation
1540
1596
  #
1541
1597
  class ListSolNetworkOperationsInfo < Struct.new(
@@ -1545,7 +1601,8 @@ module Aws::Tnb
1545
1601
  :lcm_operation_type,
1546
1602
  :metadata,
1547
1603
  :ns_instance_id,
1548
- :operation_state)
1604
+ :operation_state,
1605
+ :update_type)
1549
1606
  SENSITIVE = []
1550
1607
  include Aws::Structure
1551
1608
  end
@@ -1558,11 +1615,17 @@ module Aws::Tnb
1558
1615
  # The token for the next page of results.
1559
1616
  # @return [String]
1560
1617
  #
1618
+ # @!attribute [rw] ns_instance_id
1619
+ # Network instance id filter, to retrieve network operations
1620
+ # associated to a network instance.
1621
+ # @return [String]
1622
+ #
1561
1623
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkOperationsInput AWS API Documentation
1562
1624
  #
1563
1625
  class ListSolNetworkOperationsInput < Struct.new(
1564
1626
  :max_results,
1565
- :next_token)
1627
+ :next_token,
1628
+ :ns_instance_id)
1566
1629
  SENSITIVE = []
1567
1630
  include Aws::Structure
1568
1631
  end
@@ -1580,11 +1643,25 @@ module Aws::Tnb
1580
1643
  # The date that the resource was last modified.
1581
1644
  # @return [Time]
1582
1645
  #
1646
+ # @!attribute [rw] nsd_info_id
1647
+ # The network service descriptor id used for the operation.
1648
+ #
1649
+ # Only present if the updateType is `UPDATE_NS`.
1650
+ # @return [String]
1651
+ #
1652
+ # @!attribute [rw] vnf_instance_id
1653
+ # The network function id used for the operation.
1654
+ #
1655
+ # Only present if the updateType is `MODIFY_VNF_INFO`.
1656
+ # @return [String]
1657
+ #
1583
1658
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ListSolNetworkOperationsMetadata AWS API Documentation
1584
1659
  #
1585
1660
  class ListSolNetworkOperationsMetadata < Struct.new(
1586
1661
  :created_at,
1587
- :last_modified)
1662
+ :last_modified,
1663
+ :nsd_info_id,
1664
+ :vnf_instance_id)
1588
1665
  SENSITIVE = []
1589
1666
  include Aws::Structure
1590
1667
  end
@@ -1778,6 +1855,28 @@ module Aws::Tnb
1778
1855
  include Aws::Structure
1779
1856
  end
1780
1857
 
1858
+ # Metadata related to the configuration properties used during update of
1859
+ # a specific network function in a network instance.
1860
+ #
1861
+ # @!attribute [rw] vnf_configurable_properties
1862
+ # The configurable properties used during update of the network
1863
+ # function instance.
1864
+ # @return [Hash,Array,String,Numeric,Boolean]
1865
+ #
1866
+ # @!attribute [rw] vnf_instance_id
1867
+ # The network function instance that was updated in the network
1868
+ # instance.
1869
+ # @return [String]
1870
+ #
1871
+ # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/ModifyVnfInfoMetadata AWS API Documentation
1872
+ #
1873
+ class ModifyVnfInfoMetadata < Struct.new(
1874
+ :vnf_configurable_properties,
1875
+ :vnf_instance_id)
1876
+ SENSITIVE = []
1877
+ include Aws::Structure
1878
+ end
1879
+
1781
1880
  # Metadata for network package artifacts.
1782
1881
  #
1783
1882
  # Artifacts are the contents of the package descriptor file and the
@@ -1833,7 +1932,7 @@ module Aws::Tnb
1833
1932
  :content_type,
1834
1933
  :file,
1835
1934
  :vnf_pkg_id)
1836
- SENSITIVE = []
1935
+ SENSITIVE = [:file]
1837
1936
  include Aws::Structure
1838
1937
  end
1839
1938
 
@@ -1915,7 +2014,7 @@ module Aws::Tnb
1915
2014
  :content_type,
1916
2015
  :file,
1917
2016
  :nsd_info_id)
1918
- SENSITIVE = []
2017
+ SENSITIVE = [:file]
1919
2018
  include Aws::Structure
1920
2019
  end
1921
2020
 
@@ -2039,9 +2138,10 @@ module Aws::Tnb
2039
2138
  # @!attribute [rw] tags
2040
2139
  # A tag is a label that you assign to an Amazon Web Services resource.
2041
2140
  # Each tag consists of a key and an optional value. When you use this
2042
- # API, the tags are transferred to the network operation that is
2043
- # created. Use tags to search and filter your resources or track your
2044
- # Amazon Web Services costs.
2141
+ # API, the tags are only applied to the network operation that is
2142
+ # created. These tags are not applied to the network instance. Use
2143
+ # tags to search and filter your resources or track your Amazon Web
2144
+ # Services costs.
2045
2145
  # @return [Hash<String,String>]
2046
2146
  #
2047
2147
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/TerminateSolNetworkInstanceInput AWS API Documentation
@@ -2060,9 +2160,10 @@ module Aws::Tnb
2060
2160
  # @!attribute [rw] tags
2061
2161
  # A tag is a label that you assign to an Amazon Web Services resource.
2062
2162
  # Each tag consists of a key and an optional value. When you use this
2063
- # API, the tags are transferred to the network operation that is
2064
- # created. Use tags to search and filter your resources or track your
2065
- # Amazon Web Services costs.
2163
+ # API, the tags are only applied to the network operation that is
2164
+ # created. These tags are not applied to the network instance. Use
2165
+ # tags to search and filter your resources or track your Amazon Web
2166
+ # Services costs.
2066
2167
  # @return [Hash<String,String>]
2067
2168
  #
2068
2169
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/TerminateSolNetworkInstanceOutput AWS API Documentation
@@ -2127,6 +2228,27 @@ module Aws::Tnb
2127
2228
  #
2128
2229
  class UntagResourceOutput < Aws::EmptyStructure; end
2129
2230
 
2231
+ # Metadata related to the configuration properties used during update of
2232
+ # a network instance.
2233
+ #
2234
+ # @!attribute [rw] additional_params_for_ns
2235
+ # The configurable properties used during update.
2236
+ # @return [Hash,Array,String,Numeric,Boolean]
2237
+ #
2238
+ # @!attribute [rw] nsd_info_id
2239
+ # The network service descriptor used for updating the network
2240
+ # instance.
2241
+ # @return [String]
2242
+ #
2243
+ # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UpdateNsMetadata AWS API Documentation
2244
+ #
2245
+ class UpdateNsMetadata < Struct.new(
2246
+ :additional_params_for_ns,
2247
+ :nsd_info_id)
2248
+ SENSITIVE = []
2249
+ include Aws::Structure
2250
+ end
2251
+
2130
2252
  # @!attribute [rw] operational_state
2131
2253
  # Operational state of the function package.
2132
2254
  # @return [String]
@@ -2159,6 +2281,9 @@ module Aws::Tnb
2159
2281
  # @!attribute [rw] modify_vnf_info_data
2160
2282
  # Identifies the network function information parameters and/or the
2161
2283
  # configurable properties of the network function to be modified.
2284
+ #
2285
+ # Include this property only if the update type is
2286
+ # `MODIFY_VNF_INFORMATION`.
2162
2287
  # @return [Types::UpdateSolNetworkModify]
2163
2288
  #
2164
2289
  # @!attribute [rw] ns_instance_id
@@ -2168,13 +2293,27 @@ module Aws::Tnb
2168
2293
  # @!attribute [rw] tags
2169
2294
  # A tag is a label that you assign to an Amazon Web Services resource.
2170
2295
  # Each tag consists of a key and an optional value. When you use this
2171
- # API, the tags are transferred to the network operation that is
2172
- # created. Use tags to search and filter your resources or track your
2173
- # Amazon Web Services costs.
2296
+ # API, the tags are only applied to the network operation that is
2297
+ # created. These tags are not applied to the network instance. Use
2298
+ # tags to search and filter your resources or track your Amazon Web
2299
+ # Services costs.
2174
2300
  # @return [Hash<String,String>]
2175
2301
  #
2302
+ # @!attribute [rw] update_ns
2303
+ # Identifies the network service descriptor and the configurable
2304
+ # properties of the descriptor, to be used for the update.
2305
+ #
2306
+ # Include this property only if the update type is `UPDATE_NS`.
2307
+ # @return [Types::UpdateSolNetworkServiceData]
2308
+ #
2176
2309
  # @!attribute [rw] update_type
2177
2310
  # The type of update.
2311
+ #
2312
+ # * Use the `MODIFY_VNF_INFORMATION` update type, to update a specific
2313
+ # network function configuration, in the network instance.
2314
+ #
2315
+ # * Use the `UPDATE_NS` update type, to update the network instance to
2316
+ # a new network service descriptor.
2178
2317
  # @return [String]
2179
2318
  #
2180
2319
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UpdateSolNetworkInstanceInput AWS API Documentation
@@ -2183,6 +2322,7 @@ module Aws::Tnb
2183
2322
  :modify_vnf_info_data,
2184
2323
  :ns_instance_id,
2185
2324
  :tags,
2325
+ :update_ns,
2186
2326
  :update_type)
2187
2327
  SENSITIVE = [:tags]
2188
2328
  include Aws::Structure
@@ -2195,9 +2335,10 @@ module Aws::Tnb
2195
2335
  # @!attribute [rw] tags
2196
2336
  # A tag is a label that you assign to an Amazon Web Services resource.
2197
2337
  # Each tag consists of a key and an optional value. When you use this
2198
- # API, the tags are transferred to the network operation that is
2199
- # created. Use tags to search and filter your resources or track your
2200
- # Amazon Web Services costs.
2338
+ # API, the tags are only applied to the network operation that is
2339
+ # created. These tags are not applied to the network instance. Use
2340
+ # tags to search and filter your resources or track your Amazon Web
2341
+ # Services costs.
2201
2342
  # @return [Hash<String,String>]
2202
2343
  #
2203
2344
  # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UpdateSolNetworkInstanceOutput AWS API Documentation
@@ -2265,6 +2406,27 @@ module Aws::Tnb
2265
2406
  include Aws::Structure
2266
2407
  end
2267
2408
 
2409
+ # Information parameters and/or the configurable properties for a
2410
+ # network descriptor used for update.
2411
+ #
2412
+ # @!attribute [rw] additional_params_for_ns
2413
+ # Values for the configurable properties declared in the network
2414
+ # service descriptor.
2415
+ # @return [Hash,Array,String,Numeric,Boolean]
2416
+ #
2417
+ # @!attribute [rw] nsd_info_id
2418
+ # ID of the network service descriptor.
2419
+ # @return [String]
2420
+ #
2421
+ # @see http://docs.aws.amazon.com/goto/WebAPI/tnb-2008-10-21/UpdateSolNetworkServiceData AWS API Documentation
2422
+ #
2423
+ class UpdateSolNetworkServiceData < Struct.new(
2424
+ :additional_params_for_ns,
2425
+ :nsd_info_id)
2426
+ SENSITIVE = []
2427
+ include Aws::Structure
2428
+ end
2429
+
2268
2430
  # @!attribute [rw] content_type
2269
2431
  # Function package content type.
2270
2432
  # @return [String]
@@ -2283,7 +2445,7 @@ module Aws::Tnb
2283
2445
  :content_type,
2284
2446
  :file,
2285
2447
  :vnf_pkg_id)
2286
- SENSITIVE = []
2448
+ SENSITIVE = [:file]
2287
2449
  include Aws::Structure
2288
2450
  end
2289
2451
 
@@ -2365,7 +2527,7 @@ module Aws::Tnb
2365
2527
  :content_type,
2366
2528
  :file,
2367
2529
  :nsd_info_id)
2368
- SENSITIVE = []
2530
+ SENSITIVE = [:file]
2369
2531
  include Aws::Structure
2370
2532
  end
2371
2533
 
data/lib/aws-sdk-tnb.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-tnb/customizations'
52
52
  # @!group service
53
53
  module Aws::Tnb
54
54
 
55
- GEM_VERSION = '1.16.0'
55
+ GEM_VERSION = '1.18.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
@@ -216,7 +217,7 @@ module Aws
216
217
  def metadata: () -> Types::GetSolNetworkInstanceMetadata
217
218
  def ns_instance_description: () -> ::String
218
219
  def ns_instance_name: () -> ::String
219
- def ns_state: () -> ("INSTANTIATED" | "NOT_INSTANTIATED" | "IMPAIRED" | "STOPPED" | "DELETED" | "INSTANTIATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "TERMINATE_IN_PROGRESS")
220
+ def ns_state: () -> ("INSTANTIATED" | "NOT_INSTANTIATED" | "UPDATED" | "IMPAIRED" | "UPDATE_FAILED" | "STOPPED" | "DELETED" | "INSTANTIATE_IN_PROGRESS" | "INTENT_TO_UPDATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "TERMINATE_IN_PROGRESS")
220
221
  def nsd_id: () -> ::String
221
222
  def nsd_info_id: () -> ::String
222
223
  def tags: () -> ::Hash[::String, ::String]
@@ -237,6 +238,7 @@ module Aws
237
238
  def operation_state: () -> ("PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLING" | "CANCELLED")
238
239
  def tags: () -> ::Hash[::String, ::String]
239
240
  def tasks: () -> ::Array[Types::GetSolNetworkOperationTaskDetails]
241
+ def update_type: () -> ("MODIFY_VNF_INFORMATION" | "UPDATE_NS")
240
242
  end
241
243
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Tnb/Client.html#get_sol_network_operation-instance_method
242
244
  def get_sol_network_operation: (
@@ -346,7 +348,8 @@ module Aws
346
348
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Tnb/Client.html#list_sol_network_operations-instance_method
347
349
  def list_sol_network_operations: (
348
350
  ?max_results: ::Integer,
349
- ?next_token: ::String
351
+ ?next_token: ::String,
352
+ ?ns_instance_id: ::String
350
353
  ) -> _ListSolNetworkOperationsResponseSuccess
351
354
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSolNetworkOperationsResponseSuccess
352
355
 
@@ -464,7 +467,12 @@ module Aws
464
467
  },
465
468
  ns_instance_id: ::String,
466
469
  ?tags: Hash[::String, ::String],
467
- update_type: ("MODIFY_VNF_INFORMATION")
470
+ ?update_ns: {
471
+ additional_params_for_ns: {
472
+ }?,
473
+ nsd_info_id: ::String
474
+ },
475
+ update_type: ("MODIFY_VNF_INFORMATION" | "UPDATE_NS")
468
476
  ) -> _UpdateSolNetworkInstanceResponseSuccess
469
477
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSolNetworkInstanceResponseSuccess
470
478
 
data/sig/resource.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
data/sig/types.rbs CHANGED
@@ -192,7 +192,7 @@ module Aws::Tnb
192
192
  attr_accessor metadata: Types::GetSolNetworkInstanceMetadata
193
193
  attr_accessor ns_instance_description: ::String
194
194
  attr_accessor ns_instance_name: ::String
195
- attr_accessor ns_state: ("INSTANTIATED" | "NOT_INSTANTIATED" | "IMPAIRED" | "STOPPED" | "DELETED" | "INSTANTIATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "TERMINATE_IN_PROGRESS")
195
+ attr_accessor ns_state: ("INSTANTIATED" | "NOT_INSTANTIATED" | "UPDATED" | "IMPAIRED" | "UPDATE_FAILED" | "STOPPED" | "DELETED" | "INSTANTIATE_IN_PROGRESS" | "INTENT_TO_UPDATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "TERMINATE_IN_PROGRESS")
196
196
  attr_accessor nsd_id: ::String
197
197
  attr_accessor nsd_info_id: ::String
198
198
  attr_accessor tags: ::Hash[::String, ::String]
@@ -206,7 +206,10 @@ module Aws::Tnb
206
206
 
207
207
  class GetSolNetworkOperationMetadata
208
208
  attr_accessor created_at: ::Time
209
+ attr_accessor instantiate_metadata: Types::InstantiateMetadata
209
210
  attr_accessor last_modified: ::Time
211
+ attr_accessor modify_vnf_info_metadata: Types::ModifyVnfInfoMetadata
212
+ attr_accessor update_ns_metadata: Types::UpdateNsMetadata
210
213
  SENSITIVE: []
211
214
  end
212
215
 
@@ -220,6 +223,7 @@ module Aws::Tnb
220
223
  attr_accessor operation_state: ("PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLING" | "CANCELLED")
221
224
  attr_accessor tags: ::Hash[::String, ::String]
222
225
  attr_accessor tasks: ::Array[Types::GetSolNetworkOperationTaskDetails]
226
+ attr_accessor update_type: ("MODIFY_VNF_INFORMATION" | "UPDATE_NS")
223
227
  SENSITIVE: [:tags]
224
228
  end
225
229
 
@@ -301,6 +305,12 @@ module Aws::Tnb
301
305
  SENSITIVE: []
302
306
  end
303
307
 
308
+ class InstantiateMetadata
309
+ attr_accessor additional_params_for_ns: untyped
310
+ attr_accessor nsd_info_id: ::String
311
+ SENSITIVE: []
312
+ end
313
+
304
314
  class InstantiateSolNetworkInstanceInput
305
315
  attr_accessor additional_params_for_ns: untyped
306
316
  attr_accessor dry_run: bool
@@ -393,7 +403,7 @@ module Aws::Tnb
393
403
  attr_accessor metadata: Types::ListSolNetworkInstanceMetadata
394
404
  attr_accessor ns_instance_description: ::String
395
405
  attr_accessor ns_instance_name: ::String
396
- attr_accessor ns_state: ("INSTANTIATED" | "NOT_INSTANTIATED" | "IMPAIRED" | "STOPPED" | "DELETED" | "INSTANTIATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "TERMINATE_IN_PROGRESS")
406
+ attr_accessor ns_state: ("INSTANTIATED" | "NOT_INSTANTIATED" | "UPDATED" | "IMPAIRED" | "UPDATE_FAILED" | "STOPPED" | "DELETED" | "INSTANTIATE_IN_PROGRESS" | "INTENT_TO_UPDATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "TERMINATE_IN_PROGRESS")
397
407
  attr_accessor nsd_id: ::String
398
408
  attr_accessor nsd_info_id: ::String
399
409
  SENSITIVE: []
@@ -425,18 +435,22 @@ module Aws::Tnb
425
435
  attr_accessor metadata: Types::ListSolNetworkOperationsMetadata
426
436
  attr_accessor ns_instance_id: ::String
427
437
  attr_accessor operation_state: ("PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLING" | "CANCELLED")
438
+ attr_accessor update_type: ("MODIFY_VNF_INFORMATION" | "UPDATE_NS")
428
439
  SENSITIVE: []
429
440
  end
430
441
 
431
442
  class ListSolNetworkOperationsInput
432
443
  attr_accessor max_results: ::Integer
433
444
  attr_accessor next_token: ::String
445
+ attr_accessor ns_instance_id: ::String
434
446
  SENSITIVE: []
435
447
  end
436
448
 
437
449
  class ListSolNetworkOperationsMetadata
438
450
  attr_accessor created_at: ::Time
439
451
  attr_accessor last_modified: ::Time
452
+ attr_accessor nsd_info_id: ::String
453
+ attr_accessor vnf_instance_id: ::String
440
454
  SENSITIVE: []
441
455
  end
442
456
 
@@ -490,6 +504,12 @@ module Aws::Tnb
490
504
  SENSITIVE: [:tags]
491
505
  end
492
506
 
507
+ class ModifyVnfInfoMetadata
508
+ attr_accessor vnf_configurable_properties: untyped
509
+ attr_accessor vnf_instance_id: ::String
510
+ SENSITIVE: []
511
+ end
512
+
493
513
  class NetworkArtifactMeta
494
514
  attr_accessor overrides: ::Array[Types::ToscaOverride]
495
515
  SENSITIVE: []
@@ -505,7 +525,7 @@ module Aws::Tnb
505
525
  attr_accessor content_type: ("application/zip")
506
526
  attr_accessor file: ::String
507
527
  attr_accessor vnf_pkg_id: ::String
508
- SENSITIVE: []
528
+ SENSITIVE: [:file]
509
529
  end
510
530
 
511
531
  class PutSolFunctionPackageContentMetadata
@@ -527,7 +547,7 @@ module Aws::Tnb
527
547
  attr_accessor content_type: ("application/zip")
528
548
  attr_accessor file: ::String
529
549
  attr_accessor nsd_info_id: ::String
530
- SENSITIVE: []
550
+ SENSITIVE: [:file]
531
551
  end
532
552
 
533
553
  class PutSolNetworkPackageContentMetadata
@@ -597,6 +617,12 @@ module Aws::Tnb
597
617
  class UntagResourceOutput < Aws::EmptyStructure
598
618
  end
599
619
 
620
+ class UpdateNsMetadata
621
+ attr_accessor additional_params_for_ns: untyped
622
+ attr_accessor nsd_info_id: ::String
623
+ SENSITIVE: []
624
+ end
625
+
600
626
  class UpdateSolFunctionPackageInput
601
627
  attr_accessor operational_state: ("ENABLED" | "DISABLED")
602
628
  attr_accessor vnf_pkg_id: ::String
@@ -612,7 +638,8 @@ module Aws::Tnb
612
638
  attr_accessor modify_vnf_info_data: Types::UpdateSolNetworkModify
613
639
  attr_accessor ns_instance_id: ::String
614
640
  attr_accessor tags: ::Hash[::String, ::String]
615
- attr_accessor update_type: ("MODIFY_VNF_INFORMATION")
641
+ attr_accessor update_ns: Types::UpdateSolNetworkServiceData
642
+ attr_accessor update_type: ("MODIFY_VNF_INFORMATION" | "UPDATE_NS")
616
643
  SENSITIVE: [:tags]
617
644
  end
618
645
 
@@ -639,11 +666,17 @@ module Aws::Tnb
639
666
  SENSITIVE: []
640
667
  end
641
668
 
669
+ class UpdateSolNetworkServiceData
670
+ attr_accessor additional_params_for_ns: untyped
671
+ attr_accessor nsd_info_id: ::String
672
+ SENSITIVE: []
673
+ end
674
+
642
675
  class ValidateSolFunctionPackageContentInput
643
676
  attr_accessor content_type: ("application/zip")
644
677
  attr_accessor file: ::String
645
678
  attr_accessor vnf_pkg_id: ::String
646
- SENSITIVE: []
679
+ SENSITIVE: [:file]
647
680
  end
648
681
 
649
682
  class ValidateSolFunctionPackageContentMetadata
@@ -665,7 +698,7 @@ module Aws::Tnb
665
698
  attr_accessor content_type: ("application/zip")
666
699
  attr_accessor file: ::String
667
700
  attr_accessor nsd_info_id: ::String
668
- SENSITIVE: []
701
+ SENSITIVE: [:file]
669
702
  end
670
703
 
671
704
  class ValidateSolNetworkPackageContentMetadata
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-tnb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-25 00:00:00.000000000 Z
11
+ date: 2024-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.199.0
22
+ version: 3.201.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.199.0
32
+ version: 3.201.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for AWS Telco Network Builder. This gem is part
48
48
  of the AWS SDK for Ruby.
49
49
  email: