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.
467 468 469 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 467 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.
493 494 495 496 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 493 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.
555 556 557 558 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 555 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.
624 625 626 627 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 624 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.
690 691 692 693 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 690 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.
725 726 727 728 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 725 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.
759 760 761 762 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 759 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.
792 793 794 795 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 792 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 .
852 853 854 855 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 852 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..
912 913 914 915 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 912 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.
953 954 955 956 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 953 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.
998 999 1000 1001 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 998 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.
1050 1051 1052 1053 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1050 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.
1114 1115 1116 1117 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1114 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.
1172 1173 1174 1175 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1172 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.
1211 1212 1213 1214 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1211 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.
1246 1247 1248 1249 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1246 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.
1317 1318 1319 1320 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1317 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.
1364 1365 1366 1367 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1364 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.
1417 1418 1419 1420 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1417 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.
1466 1467 1468 1469 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1466 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.
1523 1524 1525 1526 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1523 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.
1577 1578 1579 1580 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1577 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.
1606 1607 1608 1609 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1606 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.
1660 1661 1662 1663 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1660 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.
1715 1716 1717 1718 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1715 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.
1751 1752 1753 1754 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1751 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.
1799 1800 1801 1802 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1799 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.
1830 1831 1832 1833 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1830 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.
1868 1869 1870 1871 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1868 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.
1950 1951 1952 1953 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1950 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.
1992 1993 1994 1995 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 1992 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.
2052 2053 2054 2055 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 2052 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.
2113 2114 2115 2116 |
# File 'gems/aws-sdk-tnb/lib/aws-sdk-tnb/client.rb', line 2113 def validate_sol_network_package_content(params = {}, = {}) req = build_request(:validate_sol_network_package_content, params) req.send_request() end |