This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-lightsail/include/aws/lightsail/model/DeleteDiskRequest.h

122 lines
3.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/lightsail/Lightsail_EXPORTS.h>
#include <aws/lightsail/LightsailRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Lightsail
{
namespace Model
{
/**
*/
class AWS_LIGHTSAIL_API DeleteDiskRequest : public LightsailRequest
{
public:
DeleteDiskRequest();
// 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 "DeleteDisk"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The unique name of the disk you want to delete (e.g.,
* <code>my-disk</code>).</p>
*/
inline const Aws::String& GetDiskName() const{ return m_diskName; }
/**
* <p>The unique name of the disk you want to delete (e.g.,
* <code>my-disk</code>).</p>
*/
inline bool DiskNameHasBeenSet() const { return m_diskNameHasBeenSet; }
/**
* <p>The unique name of the disk you want to delete (e.g.,
* <code>my-disk</code>).</p>
*/
inline void SetDiskName(const Aws::String& value) { m_diskNameHasBeenSet = true; m_diskName = value; }
/**
* <p>The unique name of the disk you want to delete (e.g.,
* <code>my-disk</code>).</p>
*/
inline void SetDiskName(Aws::String&& value) { m_diskNameHasBeenSet = true; m_diskName = std::move(value); }
/**
* <p>The unique name of the disk you want to delete (e.g.,
* <code>my-disk</code>).</p>
*/
inline void SetDiskName(const char* value) { m_diskNameHasBeenSet = true; m_diskName.assign(value); }
/**
* <p>The unique name of the disk you want to delete (e.g.,
* <code>my-disk</code>).</p>
*/
inline DeleteDiskRequest& WithDiskName(const Aws::String& value) { SetDiskName(value); return *this;}
/**
* <p>The unique name of the disk you want to delete (e.g.,
* <code>my-disk</code>).</p>
*/
inline DeleteDiskRequest& WithDiskName(Aws::String&& value) { SetDiskName(std::move(value)); return *this;}
/**
* <p>The unique name of the disk you want to delete (e.g.,
* <code>my-disk</code>).</p>
*/
inline DeleteDiskRequest& WithDiskName(const char* value) { SetDiskName(value); return *this;}
/**
* <p>A Boolean value to indicate whether to delete the enabled add-ons for the
* disk.</p>
*/
inline bool GetForceDeleteAddOns() const{ return m_forceDeleteAddOns; }
/**
* <p>A Boolean value to indicate whether to delete the enabled add-ons for the
* disk.</p>
*/
inline bool ForceDeleteAddOnsHasBeenSet() const { return m_forceDeleteAddOnsHasBeenSet; }
/**
* <p>A Boolean value to indicate whether to delete the enabled add-ons for the
* disk.</p>
*/
inline void SetForceDeleteAddOns(bool value) { m_forceDeleteAddOnsHasBeenSet = true; m_forceDeleteAddOns = value; }
/**
* <p>A Boolean value to indicate whether to delete the enabled add-ons for the
* disk.</p>
*/
inline DeleteDiskRequest& WithForceDeleteAddOns(bool value) { SetForceDeleteAddOns(value); return *this;}
private:
Aws::String m_diskName;
bool m_diskNameHasBeenSet;
bool m_forceDeleteAddOns;
bool m_forceDeleteAddOnsHasBeenSet;
};
} // namespace Model
} // namespace Lightsail
} // namespace Aws