/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace tnb { namespace Model { class ListSolFunctionPackagesResult { public: AWS_TNB_API ListSolFunctionPackagesResult(); AWS_TNB_API ListSolFunctionPackagesResult(const Aws::AmazonWebServiceResult& result); AWS_TNB_API ListSolFunctionPackagesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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.

*/ inline const Aws::Vector& GetFunctionPackages() const{ return m_functionPackages; } /** *

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.

*/ inline void SetFunctionPackages(const Aws::Vector& value) { m_functionPackages = value; } /** *

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.

*/ inline void SetFunctionPackages(Aws::Vector&& value) { m_functionPackages = std::move(value); } /** *

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.

*/ inline ListSolFunctionPackagesResult& WithFunctionPackages(const Aws::Vector& value) { SetFunctionPackages(value); return *this;} /** *

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.

*/ inline ListSolFunctionPackagesResult& WithFunctionPackages(Aws::Vector&& value) { SetFunctionPackages(std::move(value)); return *this;} /** *

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.

*/ inline ListSolFunctionPackagesResult& AddFunctionPackages(const ListSolFunctionPackageInfo& value) { m_functionPackages.push_back(value); return *this; } /** *

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.

*/ inline ListSolFunctionPackagesResult& AddFunctionPackages(ListSolFunctionPackageInfo&& value) { m_functionPackages.push_back(std::move(value)); return *this; } /** *

The token to use to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The token to use to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

The token to use to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

The token to use to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

The token to use to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline ListSolFunctionPackagesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The token to use to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline ListSolFunctionPackagesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The token to use to retrieve the next page of results. This value is * null when there are no more results to return.

*/ inline ListSolFunctionPackagesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline ListSolFunctionPackagesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListSolFunctionPackagesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListSolFunctionPackagesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_functionPackages; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace tnb } // namespace Aws