228 lines
7.5 KiB
C
228 lines
7.5 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/ec2/EC2_EXPORTS.h>
|
|||
|
|
#include <aws/ec2/EC2Request.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace EC2
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_EC2_API AttachVolumeRequest : public EC2Request
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
AttachVolumeRequest();
|
|||
|
|
|
|||
|
|
// 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 "AttachVolume"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
protected:
|
|||
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|||
|
|
|
|||
|
|
public:
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|||
|
|
* <code>xvdh</code>).</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetDevice() const{ return m_device; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|||
|
|
* <code>xvdh</code>).</p>
|
|||
|
|
*/
|
|||
|
|
inline bool DeviceHasBeenSet() const { return m_deviceHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|||
|
|
* <code>xvdh</code>).</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDevice(const Aws::String& value) { m_deviceHasBeenSet = true; m_device = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|||
|
|
* <code>xvdh</code>).</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDevice(Aws::String&& value) { m_deviceHasBeenSet = true; m_device = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|||
|
|
* <code>xvdh</code>).</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDevice(const char* value) { m_deviceHasBeenSet = true; m_device.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|||
|
|
* <code>xvdh</code>).</p>
|
|||
|
|
*/
|
|||
|
|
inline AttachVolumeRequest& WithDevice(const Aws::String& value) { SetDevice(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|||
|
|
* <code>xvdh</code>).</p>
|
|||
|
|
*/
|
|||
|
|
inline AttachVolumeRequest& WithDevice(Aws::String&& value) { SetDevice(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|||
|
|
* <code>xvdh</code>).</p>
|
|||
|
|
*/
|
|||
|
|
inline AttachVolumeRequest& WithDevice(const char* value) { SetDevice(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetInstanceId() const{ return m_instanceId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline AttachVolumeRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline AttachVolumeRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline AttachVolumeRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the EBS volume. The volume and instance must be within the same
|
|||
|
|
* Availability Zone.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetVolumeId() const{ return m_volumeId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the EBS volume. The volume and instance must be within the same
|
|||
|
|
* Availability Zone.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool VolumeIdHasBeenSet() const { return m_volumeIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the EBS volume. The volume and instance must be within the same
|
|||
|
|
* Availability Zone.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVolumeId(const Aws::String& value) { m_volumeIdHasBeenSet = true; m_volumeId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the EBS volume. The volume and instance must be within the same
|
|||
|
|
* Availability Zone.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVolumeId(Aws::String&& value) { m_volumeIdHasBeenSet = true; m_volumeId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the EBS volume. The volume and instance must be within the same
|
|||
|
|
* Availability Zone.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVolumeId(const char* value) { m_volumeIdHasBeenSet = true; m_volumeId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the EBS volume. The volume and instance must be within the same
|
|||
|
|
* Availability Zone.</p>
|
|||
|
|
*/
|
|||
|
|
inline AttachVolumeRequest& WithVolumeId(const Aws::String& value) { SetVolumeId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the EBS volume. The volume and instance must be within the same
|
|||
|
|
* Availability Zone.</p>
|
|||
|
|
*/
|
|||
|
|
inline AttachVolumeRequest& WithVolumeId(Aws::String&& value) { SetVolumeId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the EBS volume. The volume and instance must be within the same
|
|||
|
|
* Availability Zone.</p>
|
|||
|
|
*/
|
|||
|
|
inline AttachVolumeRequest& WithVolumeId(const char* value) { SetVolumeId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Checks whether you have the required permissions for the action, without
|
|||
|
|
* actually making the request, and provides an error response. If you have the
|
|||
|
|
* required permissions, the error response is <code>DryRunOperation</code>.
|
|||
|
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool GetDryRun() const{ return m_dryRun; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Checks whether you have the required permissions for the action, without
|
|||
|
|
* actually making the request, and provides an error response. If you have the
|
|||
|
|
* required permissions, the error response is <code>DryRunOperation</code>.
|
|||
|
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Checks whether you have the required permissions for the action, without
|
|||
|
|
* actually making the request, and provides an error response. If you have the
|
|||
|
|
* required permissions, the error response is <code>DryRunOperation</code>.
|
|||
|
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Checks whether you have the required permissions for the action, without
|
|||
|
|
* actually making the request, and provides an error response. If you have the
|
|||
|
|
* required permissions, the error response is <code>DryRunOperation</code>.
|
|||
|
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline AttachVolumeRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_device;
|
|||
|
|
bool m_deviceHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_instanceId;
|
|||
|
|
bool m_instanceIdHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_volumeId;
|
|||
|
|
bool m_volumeIdHasBeenSet;
|
|||
|
|
|
|||
|
|
bool m_dryRun;
|
|||
|
|
bool m_dryRunHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace EC2
|
|||
|
|
} // namespace Aws
|