/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Lightsail { namespace Model { /** */ class PutInstancePublicPortsRequest : public LightsailRequest { public: AWS_LIGHTSAIL_API PutInstancePublicPortsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "PutInstancePublicPorts"; } AWS_LIGHTSAIL_API Aws::String SerializePayload() const override; AWS_LIGHTSAIL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

An array of objects to describe the ports to open for the specified * instance.

*/ inline const Aws::Vector& GetPortInfos() const{ return m_portInfos; } /** *

An array of objects to describe the ports to open for the specified * instance.

*/ inline bool PortInfosHasBeenSet() const { return m_portInfosHasBeenSet; } /** *

An array of objects to describe the ports to open for the specified * instance.

*/ inline void SetPortInfos(const Aws::Vector& value) { m_portInfosHasBeenSet = true; m_portInfos = value; } /** *

An array of objects to describe the ports to open for the specified * instance.

*/ inline void SetPortInfos(Aws::Vector&& value) { m_portInfosHasBeenSet = true; m_portInfos = std::move(value); } /** *

An array of objects to describe the ports to open for the specified * instance.

*/ inline PutInstancePublicPortsRequest& WithPortInfos(const Aws::Vector& value) { SetPortInfos(value); return *this;} /** *

An array of objects to describe the ports to open for the specified * instance.

*/ inline PutInstancePublicPortsRequest& WithPortInfos(Aws::Vector&& value) { SetPortInfos(std::move(value)); return *this;} /** *

An array of objects to describe the ports to open for the specified * instance.

*/ inline PutInstancePublicPortsRequest& AddPortInfos(const PortInfo& value) { m_portInfosHasBeenSet = true; m_portInfos.push_back(value); return *this; } /** *

An array of objects to describe the ports to open for the specified * instance.

*/ inline PutInstancePublicPortsRequest& AddPortInfos(PortInfo&& value) { m_portInfosHasBeenSet = true; m_portInfos.push_back(std::move(value)); return *this; } /** *

The name of the instance for which to open ports.

*/ inline const Aws::String& GetInstanceName() const{ return m_instanceName; } /** *

The name of the instance for which to open ports.

*/ inline bool InstanceNameHasBeenSet() const { return m_instanceNameHasBeenSet; } /** *

The name of the instance for which to open ports.

*/ inline void SetInstanceName(const Aws::String& value) { m_instanceNameHasBeenSet = true; m_instanceName = value; } /** *

The name of the instance for which to open ports.

*/ inline void SetInstanceName(Aws::String&& value) { m_instanceNameHasBeenSet = true; m_instanceName = std::move(value); } /** *

The name of the instance for which to open ports.

*/ inline void SetInstanceName(const char* value) { m_instanceNameHasBeenSet = true; m_instanceName.assign(value); } /** *

The name of the instance for which to open ports.

*/ inline PutInstancePublicPortsRequest& WithInstanceName(const Aws::String& value) { SetInstanceName(value); return *this;} /** *

The name of the instance for which to open ports.

*/ inline PutInstancePublicPortsRequest& WithInstanceName(Aws::String&& value) { SetInstanceName(std::move(value)); return *this;} /** *

The name of the instance for which to open ports.

*/ inline PutInstancePublicPortsRequest& WithInstanceName(const char* value) { SetInstanceName(value); return *this;} private: Aws::Vector m_portInfos; bool m_portInfosHasBeenSet = false; Aws::String m_instanceName; bool m_instanceNameHasBeenSet = false; }; } // namespace Model } // namespace Lightsail } // namespace Aws