feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

View File

@@ -0,0 +1,269 @@
/**
* 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/core/utils/memory/stl/AWSStreamFwd.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/ec2/model/LoadPermission.h>
#include <aws/ec2/model/ProductCode.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* <p>Describes an Amazon FPGA image (AFI) attribute.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FpgaImageAttribute">AWS
* API Reference</a></p>
*/
class AWS_EC2_API FpgaImageAttribute
{
public:
FpgaImageAttribute();
FpgaImageAttribute(const Aws::Utils::Xml::XmlNode& xmlNode);
FpgaImageAttribute& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* <p>The ID of the AFI.</p>
*/
inline const Aws::String& GetFpgaImageId() const{ return m_fpgaImageId; }
/**
* <p>The ID of the AFI.</p>
*/
inline bool FpgaImageIdHasBeenSet() const { return m_fpgaImageIdHasBeenSet; }
/**
* <p>The ID of the AFI.</p>
*/
inline void SetFpgaImageId(const Aws::String& value) { m_fpgaImageIdHasBeenSet = true; m_fpgaImageId = value; }
/**
* <p>The ID of the AFI.</p>
*/
inline void SetFpgaImageId(Aws::String&& value) { m_fpgaImageIdHasBeenSet = true; m_fpgaImageId = std::move(value); }
/**
* <p>The ID of the AFI.</p>
*/
inline void SetFpgaImageId(const char* value) { m_fpgaImageIdHasBeenSet = true; m_fpgaImageId.assign(value); }
/**
* <p>The ID of the AFI.</p>
*/
inline FpgaImageAttribute& WithFpgaImageId(const Aws::String& value) { SetFpgaImageId(value); return *this;}
/**
* <p>The ID of the AFI.</p>
*/
inline FpgaImageAttribute& WithFpgaImageId(Aws::String&& value) { SetFpgaImageId(std::move(value)); return *this;}
/**
* <p>The ID of the AFI.</p>
*/
inline FpgaImageAttribute& WithFpgaImageId(const char* value) { SetFpgaImageId(value); return *this;}
/**
* <p>The name of the AFI.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>The name of the AFI.</p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p>The name of the AFI.</p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p>The name of the AFI.</p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p>The name of the AFI.</p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p>The name of the AFI.</p>
*/
inline FpgaImageAttribute& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>The name of the AFI.</p>
*/
inline FpgaImageAttribute& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>The name of the AFI.</p>
*/
inline FpgaImageAttribute& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>The description of the AFI.</p>
*/
inline const Aws::String& GetDescription() const{ return m_description; }
/**
* <p>The description of the AFI.</p>
*/
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
/**
* <p>The description of the AFI.</p>
*/
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
/**
* <p>The description of the AFI.</p>
*/
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
/**
* <p>The description of the AFI.</p>
*/
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
/**
* <p>The description of the AFI.</p>
*/
inline FpgaImageAttribute& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
/**
* <p>The description of the AFI.</p>
*/
inline FpgaImageAttribute& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
/**
* <p>The description of the AFI.</p>
*/
inline FpgaImageAttribute& WithDescription(const char* value) { SetDescription(value); return *this;}
/**
* <p>The load permissions.</p>
*/
inline const Aws::Vector<LoadPermission>& GetLoadPermissions() const{ return m_loadPermissions; }
/**
* <p>The load permissions.</p>
*/
inline bool LoadPermissionsHasBeenSet() const { return m_loadPermissionsHasBeenSet; }
/**
* <p>The load permissions.</p>
*/
inline void SetLoadPermissions(const Aws::Vector<LoadPermission>& value) { m_loadPermissionsHasBeenSet = true; m_loadPermissions = value; }
/**
* <p>The load permissions.</p>
*/
inline void SetLoadPermissions(Aws::Vector<LoadPermission>&& value) { m_loadPermissionsHasBeenSet = true; m_loadPermissions = std::move(value); }
/**
* <p>The load permissions.</p>
*/
inline FpgaImageAttribute& WithLoadPermissions(const Aws::Vector<LoadPermission>& value) { SetLoadPermissions(value); return *this;}
/**
* <p>The load permissions.</p>
*/
inline FpgaImageAttribute& WithLoadPermissions(Aws::Vector<LoadPermission>&& value) { SetLoadPermissions(std::move(value)); return *this;}
/**
* <p>The load permissions.</p>
*/
inline FpgaImageAttribute& AddLoadPermissions(const LoadPermission& value) { m_loadPermissionsHasBeenSet = true; m_loadPermissions.push_back(value); return *this; }
/**
* <p>The load permissions.</p>
*/
inline FpgaImageAttribute& AddLoadPermissions(LoadPermission&& value) { m_loadPermissionsHasBeenSet = true; m_loadPermissions.push_back(std::move(value)); return *this; }
/**
* <p>The product codes.</p>
*/
inline const Aws::Vector<ProductCode>& GetProductCodes() const{ return m_productCodes; }
/**
* <p>The product codes.</p>
*/
inline bool ProductCodesHasBeenSet() const { return m_productCodesHasBeenSet; }
/**
* <p>The product codes.</p>
*/
inline void SetProductCodes(const Aws::Vector<ProductCode>& value) { m_productCodesHasBeenSet = true; m_productCodes = value; }
/**
* <p>The product codes.</p>
*/
inline void SetProductCodes(Aws::Vector<ProductCode>&& value) { m_productCodesHasBeenSet = true; m_productCodes = std::move(value); }
/**
* <p>The product codes.</p>
*/
inline FpgaImageAttribute& WithProductCodes(const Aws::Vector<ProductCode>& value) { SetProductCodes(value); return *this;}
/**
* <p>The product codes.</p>
*/
inline FpgaImageAttribute& WithProductCodes(Aws::Vector<ProductCode>&& value) { SetProductCodes(std::move(value)); return *this;}
/**
* <p>The product codes.</p>
*/
inline FpgaImageAttribute& AddProductCodes(const ProductCode& value) { m_productCodesHasBeenSet = true; m_productCodes.push_back(value); return *this; }
/**
* <p>The product codes.</p>
*/
inline FpgaImageAttribute& AddProductCodes(ProductCode&& value) { m_productCodesHasBeenSet = true; m_productCodes.push_back(std::move(value)); return *this; }
private:
Aws::String m_fpgaImageId;
bool m_fpgaImageIdHasBeenSet;
Aws::String m_name;
bool m_nameHasBeenSet;
Aws::String m_description;
bool m_descriptionHasBeenSet;
Aws::Vector<LoadPermission> m_loadPermissions;
bool m_loadPermissionsHasBeenSet;
Aws::Vector<ProductCode> m_productCodes;
bool m_productCodesHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws