/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace tnb { namespace Model { /** *

Information parameters and/or the configurable properties for a network * function.

A network function instance is a function in a function package * .

See Also:

AWS * API Reference

*/ class UpdateSolNetworkModify { public: AWS_TNB_API UpdateSolNetworkModify(); AWS_TNB_API UpdateSolNetworkModify(Aws::Utils::Json::JsonView jsonValue); AWS_TNB_API UpdateSolNetworkModify& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_TNB_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Provides values for the configurable properties declared in the function * package descriptor.

*/ inline Aws::Utils::DocumentView GetVnfConfigurableProperties() const{ return m_vnfConfigurableProperties; } /** *

Provides values for the configurable properties declared in the function * package descriptor.

*/ inline bool VnfConfigurablePropertiesHasBeenSet() const { return m_vnfConfigurablePropertiesHasBeenSet; } /** *

Provides values for the configurable properties declared in the function * package descriptor.

*/ inline void SetVnfConfigurableProperties(const Aws::Utils::Document& value) { m_vnfConfigurablePropertiesHasBeenSet = true; m_vnfConfigurableProperties = value; } /** *

Provides values for the configurable properties declared in the function * package descriptor.

*/ inline void SetVnfConfigurableProperties(Aws::Utils::Document&& value) { m_vnfConfigurablePropertiesHasBeenSet = true; m_vnfConfigurableProperties = std::move(value); } /** *

Provides values for the configurable properties declared in the function * package descriptor.

*/ inline UpdateSolNetworkModify& WithVnfConfigurableProperties(const Aws::Utils::Document& value) { SetVnfConfigurableProperties(value); return *this;} /** *

Provides values for the configurable properties declared in the function * package descriptor.

*/ inline UpdateSolNetworkModify& WithVnfConfigurableProperties(Aws::Utils::Document&& value) { SetVnfConfigurableProperties(std::move(value)); return *this;} /** *

ID of the network function instance.

A network function instance is a * function in a function package .

*/ inline const Aws::String& GetVnfInstanceId() const{ return m_vnfInstanceId; } /** *

ID of the network function instance.

A network function instance is a * function in a function package .

*/ inline bool VnfInstanceIdHasBeenSet() const { return m_vnfInstanceIdHasBeenSet; } /** *

ID of the network function instance.

A network function instance is a * function in a function package .

*/ inline void SetVnfInstanceId(const Aws::String& value) { m_vnfInstanceIdHasBeenSet = true; m_vnfInstanceId = value; } /** *

ID of the network function instance.

A network function instance is a * function in a function package .

*/ inline void SetVnfInstanceId(Aws::String&& value) { m_vnfInstanceIdHasBeenSet = true; m_vnfInstanceId = std::move(value); } /** *

ID of the network function instance.

A network function instance is a * function in a function package .

*/ inline void SetVnfInstanceId(const char* value) { m_vnfInstanceIdHasBeenSet = true; m_vnfInstanceId.assign(value); } /** *

ID of the network function instance.

A network function instance is a * function in a function package .

*/ inline UpdateSolNetworkModify& WithVnfInstanceId(const Aws::String& value) { SetVnfInstanceId(value); return *this;} /** *

ID of the network function instance.

A network function instance is a * function in a function package .

*/ inline UpdateSolNetworkModify& WithVnfInstanceId(Aws::String&& value) { SetVnfInstanceId(std::move(value)); return *this;} /** *

ID of the network function instance.

A network function instance is a * function in a function package .

*/ inline UpdateSolNetworkModify& WithVnfInstanceId(const char* value) { SetVnfInstanceId(value); return *this;} private: Aws::Utils::Document m_vnfConfigurableProperties; bool m_vnfConfigurablePropertiesHasBeenSet = false; Aws::String m_vnfInstanceId; bool m_vnfInstanceIdHasBeenSet = false; }; } // namespace Model } // namespace tnb } // namespace Aws