Class: Aws::Tnb::Client
- Inherits:
-
Seahorse::Client::Base
- Object
- Seahorse::Client::Base
- Aws::Tnb::Client
- Includes:
- ClientStubs
- Defined in:
- gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb
Overview
An API client for Tnb. To construct a client, you need to configure a :region
and :credentials
.
client = Aws::Tnb::Client.new(
region: region_name,
credentials: credentials,
# ...
)
For details on configuring region and credentials see the developer guide.
See #initialize for a full list of supported configuration options.
Instance Attribute Summary
Attributes inherited from Seahorse::Client::Base
API Operations collapse
-
#cancel_sol_network_operation(params = {}) ⇒ Struct
Cancels a network operation.
-
#create_sol_function_package(params = {}) ⇒ Types::CreateSolFunctionPackageOutput
Creates a function package.
-
#create_sol_network_instance(params = {}) ⇒ Types::CreateSolNetworkInstanceOutput
Creates a network instance.
-
#create_sol_network_package(params = {}) ⇒ Types::CreateSolNetworkPackageOutput
Creates a network package.
-
#delete_sol_function_package(params = {}) ⇒ Struct
Deletes a function package.
-
#delete_sol_network_instance(params = {}) ⇒ Struct
Deletes a network instance.
-
#delete_sol_network_package(params = {}) ⇒ Struct
Deletes network package.
-
#get_sol_function_instance(params = {}) ⇒ Types::GetSolFunctionInstanceOutput
Gets the details of a network function instance, including the instantiation state and metadata from the function package descriptor in the network function package.
-
#get_sol_function_package(params = {}) ⇒ Types::GetSolFunctionPackageOutput
Gets the details of an individual function package, such as the operational state and whether the package is in use.
-
#get_sol_function_package_content(params = {}) ⇒ Types::GetSolFunctionPackageContentOutput
Gets the contents of a function package.
-
#get_sol_function_package_descriptor(params = {}) ⇒ Types::GetSolFunctionPackageDescriptorOutput
Gets a function package descriptor in a function package.
-
#get_sol_network_instance(params = {}) ⇒ Types::GetSolNetworkInstanceOutput
Gets the details of the network instance.
-
#get_sol_network_operation(params = {}) ⇒ Types::GetSolNetworkOperationOutput
Gets the details of a network operation, including the tasks involved in the network operation and the status of the tasks.
-
#get_sol_network_package(params = {}) ⇒ Types::GetSolNetworkPackageOutput
Gets the details of a network package.
-
#get_sol_network_package_content(params = {}) ⇒ Types::GetSolNetworkPackageContentOutput
Gets the contents of a network package.
-
#get_sol_network_package_descriptor(params = {}) ⇒ Types::GetSolNetworkPackageDescriptorOutput
Gets the content of the network service descriptor.
-
#instantiate_sol_network_instance(params = {}) ⇒ Types::InstantiateSolNetworkInstanceOutput
Instantiates a network instance.
-
#list_sol_function_instances(params = {}) ⇒ Types::ListSolFunctionInstancesOutput
Lists network function instances.
-
#list_sol_function_packages(params = {}) ⇒ Types::ListSolFunctionPackagesOutput
Lists information about function packages.
-
#list_sol_network_instances(params = {}) ⇒ Types::ListSolNetworkInstancesOutput
Lists your network instances.
-
#list_sol_network_operations(params = {}) ⇒ Types::ListSolNetworkOperationsOutput
Lists details for a network operation, including when the operation started and the status of the operation.
-
#list_sol_network_packages(params = {}) ⇒ Types::ListSolNetworkPackagesOutput
Lists network packages.
-
#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceOutput
Lists tags for AWS TNB resources.
-
#put_sol_function_package_content(params = {}) ⇒ Types::PutSolFunctionPackageContentOutput
Uploads the contents of a function package.
-
#put_sol_network_package_content(params = {}) ⇒ Types::PutSolNetworkPackageContentOutput
Uploads the contents of a network package.
-
#tag_resource(params = {}) ⇒ Struct
Tags an AWS TNB resource.
-
#terminate_sol_network_instance(params = {}) ⇒ Types::TerminateSolNetworkInstanceOutput
Terminates a network instance.
-
#untag_resource(params = {}) ⇒ Struct
Untags an AWS TNB resource.
-
#update_sol_function_package(params = {}) ⇒ Types::UpdateSolFunctionPackageOutput
Updates the operational state of function package.
-
#update_sol_network_instance(params = {}) ⇒ Types::UpdateSolNetworkInstanceOutput
Update a network instance.
-
#update_sol_network_package(params = {}) ⇒ Types::UpdateSolNetworkPackageOutput
Updates the operational state of a network package.
-
#validate_sol_function_package_content(params = {}) ⇒ Types::ValidateSolFunctionPackageContentOutput
Validates function package content.
-
#validate_sol_network_package_content(params = {}) ⇒ Types::ValidateSolNetworkPackageContentOutput
Validates network package content.
Instance Method Summary collapse
-
#initialize(options) ⇒ Client
constructor
A new instance of Client.
Methods included from ClientStubs
#api_requests, #stub_data, #stub_responses
Methods inherited from Seahorse::Client::Base
add_plugin, api, clear_plugins, define, new, #operation_names, plugins, remove_plugin, set_api, set_plugins
Methods included from Seahorse::Client::HandlerBuilder
#handle, #handle_request, #handle_response
Constructor Details
#initialize(options) ⇒ Client
Returns a new instance of Client.
476 477 478 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 476 def initialize(*args) super end |
Instance Method Details
#cancel_sol_network_operation(params = {}) ⇒ Struct
Cancels a network operation.
A network operation is any operation that is done to your network, such as network instance instantiation or termination.
502 503 504 505 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 502 def cancel_sol_network_operation(params = {}, = {}) req = build_request(:cancel_sol_network_operation, params) req.send_request() end |
#create_sol_function_package(params = {}) ⇒ Types::CreateSolFunctionPackageOutput
Creates a function package.
A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network. For more information, see Function packages in the Amazon Web Services Telco Network Builder User Guide.
Creating a function package is the first step for creating a network in AWS TNB. This request creates an empty container with an ID. The next step is to upload the actual CSAR zip file into that empty container. To upload function package content, see PutSolFunctionPackageContent.
564 565 566 567 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 564 def create_sol_function_package(params = {}, = {}) req = build_request(:create_sol_function_package, params) req.send_request() end |
#create_sol_network_instance(params = {}) ⇒ Types::CreateSolNetworkInstanceOutput
Creates a network instance.
A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed. Creating a network instance is the third step after creating a network package. For more information about network instances, Network instances in the Amazon Web Services Telco Network Builder User Guide.
Once you create a network instance, you can instantiate it. To instantiate a network, see InstantiateSolNetworkInstance.
633 634 635 636 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 633 def create_sol_network_instance(params = {}, = {}) req = build_request(:create_sol_network_instance, params) req.send_request() end |
#create_sol_network_package(params = {}) ⇒ Types::CreateSolNetworkPackageOutput
Creates a network package.
A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on. For more information, see Network instances in the Amazon Web Services Telco Network Builder User Guide.
A network package consists of a network service descriptor (NSD) file (required) and any additional files (optional), such as scripts specific to your needs. For example, if you have multiple function packages in your network package, you can use the NSD to define which network functions should run in certain VPCs, subnets, or EKS clusters.
This request creates an empty network package container with an ID. Once you create a network package, you can upload the network package content using PutSolNetworkPackageContent.
699 700 701 702 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 699 def create_sol_network_package(params = {}, = {}) req = build_request(:create_sol_network_package, params) req.send_request() end |
#delete_sol_function_package(params = {}) ⇒ Struct
Deletes a function package.
A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network.
To delete a function package, the package must be in a disabled state. To disable a function package, see UpdateSolFunctionPackage.
734 735 736 737 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 734 def delete_sol_function_package(params = {}, = {}) req = build_request(:delete_sol_function_package, params) req.send_request() end |
#delete_sol_network_instance(params = {}) ⇒ Struct
Deletes a network instance.
A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.
To delete a network instance, the instance must be in a stopped or terminated state. To terminate a network instance, see TerminateSolNetworkInstance.
768 769 770 771 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 768 def delete_sol_network_instance(params = {}, = {}) req = build_request(:delete_sol_network_instance, params) req.send_request() end |
#delete_sol_network_package(params = {}) ⇒ Struct
Deletes network package.
A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.
To delete a network package, the package must be in a disable state. To disable a network package, see UpdateSolNetworkPackage.
801 802 803 804 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 801 def delete_sol_network_package(params = {}, = {}) req = build_request(:delete_sol_network_package, params) req.send_request() end |
#get_sol_function_instance(params = {}) ⇒ Types::GetSolFunctionInstanceOutput
Gets the details of a network function instance, including the instantiation state and metadata from the function package descriptor in the network function package.
A network function instance is a function in a function package .
861 862 863 864 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 861 def get_sol_function_instance(params = {}, = {}) req = build_request(:get_sol_function_instance, params) req.send_request() end |
#get_sol_function_package(params = {}) ⇒ Types::GetSolFunctionPackageOutput
Gets the details of an individual function package, such as the operational state and whether the package is in use.
A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network..
921 922 923 924 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 921 def get_sol_function_package(params = {}, = {}) req = build_request(:get_sol_function_package, params) req.send_request() end |
#get_sol_function_package_content(params = {}) ⇒ Types::GetSolFunctionPackageContentOutput
Gets the contents of a function package.
A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network.
962 963 964 965 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 962 def get_sol_function_package_content(params = {}, = {}) req = build_request(:get_sol_function_package_content, params) req.send_request() end |
#get_sol_function_package_descriptor(params = {}) ⇒ Types::GetSolFunctionPackageDescriptorOutput
Gets a function package descriptor in a function package.
A function package descriptor is a .yaml file in a function package that uses the TOSCA standard to describe how the network function in the function package should run on your network.
A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network.
1007 1008 1009 1010 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1007 def get_sol_function_package_descriptor(params = {}, = {}) req = build_request(:get_sol_function_package_descriptor, params) req.send_request() end |
#get_sol_network_instance(params = {}) ⇒ Types::GetSolNetworkInstanceOutput
Gets the details of the network instance.
A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.
1059 1060 1061 1062 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1059 def get_sol_network_instance(params = {}, = {}) req = build_request(:get_sol_network_instance, params) req.send_request() end |
#get_sol_network_operation(params = {}) ⇒ Types::GetSolNetworkOperationOutput
Gets the details of a network operation, including the tasks involved in the network operation and the status of the tasks.
A network operation is any operation that is done to your network, such as network instance instantiation or termination.
1123 1124 1125 1126 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1123 def get_sol_network_operation(params = {}, = {}) req = build_request(:get_sol_network_operation, params) req.send_request() end |
#get_sol_network_package(params = {}) ⇒ Types::GetSolNetworkPackageOutput
Gets the details of a network package.
A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.
1181 1182 1183 1184 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1181 def get_sol_network_package(params = {}, = {}) req = build_request(:get_sol_network_package, params) req.send_request() end |
#get_sol_network_package_content(params = {}) ⇒ Types::GetSolNetworkPackageContentOutput
Gets the contents of a network package.
A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.
1220 1221 1222 1223 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1220 def get_sol_network_package_content(params = {}, = {}) req = build_request(:get_sol_network_package_content, params) req.send_request() end |
#get_sol_network_package_descriptor(params = {}) ⇒ Types::GetSolNetworkPackageDescriptorOutput
Gets the content of the network service descriptor.
A network service descriptor is a .yaml file in a network package that uses the TOSCA standard to describe the network functions you want to deploy and the Amazon Web Services infrastructure you want to deploy the network functions on.
1255 1256 1257 1258 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1255 def get_sol_network_package_descriptor(params = {}, = {}) req = build_request(:get_sol_network_package_descriptor, params) req.send_request() end |
#instantiate_sol_network_instance(params = {}) ⇒ Types::InstantiateSolNetworkInstanceOutput
Instantiates a network instance.
A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.
Before you can instantiate a network instance, you have to create a network instance. For more information, see CreateSolNetworkInstance.
1326 1327 1328 1329 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1326 def instantiate_sol_network_instance(params = {}, = {}) req = build_request(:instantiate_sol_network_instance, params) req.send_request() end |
#list_sol_function_instances(params = {}) ⇒ Types::ListSolFunctionInstancesOutput
Lists network function instances.
A network function instance is a function in a function package .
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1373 1374 1375 1376 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1373 def list_sol_function_instances(params = {}, = {}) req = build_request(:list_sol_function_instances, params) req.send_request() end |
#list_sol_function_packages(params = {}) ⇒ Types::ListSolFunctionPackagesOutput
Lists information about function packages.
A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1426 1427 1428 1429 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1426 def list_sol_function_packages(params = {}, = {}) req = build_request(:list_sol_function_packages, params) req.send_request() end |
#list_sol_network_instances(params = {}) ⇒ Types::ListSolNetworkInstancesOutput
Lists your network instances.
A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1475 1476 1477 1478 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1475 def list_sol_network_instances(params = {}, = {}) req = build_request(:list_sol_network_instances, params) req.send_request() end |
#list_sol_network_operations(params = {}) ⇒ Types::ListSolNetworkOperationsOutput
Lists details for a network operation, including when the operation started and the status of the operation.
A network operation is any operation that is done to your network, such as network instance instantiation or termination.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1532 1533 1534 1535 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1532 def list_sol_network_operations(params = {}, = {}) req = build_request(:list_sol_network_operations, params) req.send_request() end |
#list_sol_network_packages(params = {}) ⇒ Types::ListSolNetworkPackagesOutput
Lists network packages.
A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1586 1587 1588 1589 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1586 def list_sol_network_packages(params = {}, = {}) req = build_request(:list_sol_network_packages, params) req.send_request() end |
#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceOutput
Lists tags for AWS TNB resources.
1615 1616 1617 1618 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1615 def (params = {}, = {}) req = build_request(:list_tags_for_resource, params) req.send_request() end |
#put_sol_function_package_content(params = {}) ⇒ Types::PutSolFunctionPackageContentOutput
Uploads the contents of a function package.
A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network.
1669 1670 1671 1672 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1669 def put_sol_function_package_content(params = {}, = {}) req = build_request(:put_sol_function_package_content, params) req.send_request() end |
#put_sol_network_package_content(params = {}) ⇒ Types::PutSolNetworkPackageContentOutput
Uploads the contents of a network package.
A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.
1724 1725 1726 1727 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1724 def put_sol_network_package_content(params = {}, = {}) req = build_request(:put_sol_network_package_content, params) req.send_request() end |
#tag_resource(params = {}) ⇒ Struct
Tags an AWS TNB resource.
A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.
1760 1761 1762 1763 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1760 def tag_resource(params = {}, = {}) req = build_request(:tag_resource, params) req.send_request() end |
#terminate_sol_network_instance(params = {}) ⇒ Types::TerminateSolNetworkInstanceOutput
Terminates a network instance.
A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.
You must terminate a network instance before you can delete it.
1808 1809 1810 1811 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1808 def terminate_sol_network_instance(params = {}, = {}) req = build_request(:terminate_sol_network_instance, params) req.send_request() end |
#untag_resource(params = {}) ⇒ Struct
Untags an AWS TNB resource.
A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.
1839 1840 1841 1842 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1839 def untag_resource(params = {}, = {}) req = build_request(:untag_resource, params) req.send_request() end |
#update_sol_function_package(params = {}) ⇒ Types::UpdateSolFunctionPackageOutput
Updates the operational state of function package.
A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network.
1877 1878 1879 1880 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1877 def update_sol_function_package(params = {}, = {}) req = build_request(:update_sol_function_package, params) req.send_request() end |
#update_sol_network_instance(params = {}) ⇒ Types::UpdateSolNetworkInstanceOutput
Update a network instance.
A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.
Choose the updateType parameter to target the necessary update of the network instance.
1959 1960 1961 1962 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1959 def update_sol_network_instance(params = {}, = {}) req = build_request(:update_sol_network_instance, params) req.send_request() end |
#update_sol_network_package(params = {}) ⇒ Types::UpdateSolNetworkPackageOutput
Updates the operational state of a network package.
A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.
A network service descriptor is a .yaml file in a network package that uses the TOSCA standard to describe the network functions you want to deploy and the Amazon Web Services infrastructure you want to deploy the network functions on.
2001 2002 2003 2004 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 2001 def update_sol_network_package(params = {}, = {}) req = build_request(:update_sol_network_package, params) req.send_request() end |
#validate_sol_function_package_content(params = {}) ⇒ Types::ValidateSolFunctionPackageContentOutput
Validates function package content. This can be used as a dry run before uploading function package content with PutSolFunctionPackageContent.
A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network.
2061 2062 2063 2064 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 2061 def validate_sol_function_package_content(params = {}, = {}) req = build_request(:validate_sol_function_package_content, params) req.send_request() end |
#validate_sol_network_package_content(params = {}) ⇒ Types::ValidateSolNetworkPackageContentOutput
Validates network package content. This can be used as a dry run before uploading network package content with PutSolNetworkPackageContent.
A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.
2122 2123 2124 2125 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 2122 def validate_sol_network_package_content(params = {}, = {}) req = build_request(:validate_sol_network_package_content, params) req.send_request() end |