177 lines
6.7 KiB
C
177 lines
6.7 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/es/ElasticsearchService_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|||
|
|
#include <aws/es/model/InstanceLimits.h>
|
|||
|
|
#include <aws/es/model/StorageType.h>
|
|||
|
|
#include <aws/es/model/AdditionalLimit.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace ElasticsearchService
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> Limits for given InstanceType and for each of it's role. <br/> Limits
|
|||
|
|
* contains following <code> <a>StorageTypes,</a> </code> <code>
|
|||
|
|
* <a>InstanceLimits</a> </code> and <code> <a>AdditionalLimits</a> </code>
|
|||
|
|
* </p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/es-2015-01-01/Limits">AWS API
|
|||
|
|
* Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_ELASTICSEARCHSERVICE_API Limits
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
Limits();
|
|||
|
|
Limits(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Limits& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>StorageType represents the list of storage related types and attributes that
|
|||
|
|
* are available for given InstanceType. </p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<StorageType>& GetStorageTypes() const{ return m_storageTypes; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>StorageType represents the list of storage related types and attributes that
|
|||
|
|
* are available for given InstanceType. </p>
|
|||
|
|
*/
|
|||
|
|
inline bool StorageTypesHasBeenSet() const { return m_storageTypesHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>StorageType represents the list of storage related types and attributes that
|
|||
|
|
* are available for given InstanceType. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetStorageTypes(const Aws::Vector<StorageType>& value) { m_storageTypesHasBeenSet = true; m_storageTypes = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>StorageType represents the list of storage related types and attributes that
|
|||
|
|
* are available for given InstanceType. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetStorageTypes(Aws::Vector<StorageType>&& value) { m_storageTypesHasBeenSet = true; m_storageTypes = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>StorageType represents the list of storage related types and attributes that
|
|||
|
|
* are available for given InstanceType. </p>
|
|||
|
|
*/
|
|||
|
|
inline Limits& WithStorageTypes(const Aws::Vector<StorageType>& value) { SetStorageTypes(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>StorageType represents the list of storage related types and attributes that
|
|||
|
|
* are available for given InstanceType. </p>
|
|||
|
|
*/
|
|||
|
|
inline Limits& WithStorageTypes(Aws::Vector<StorageType>&& value) { SetStorageTypes(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>StorageType represents the list of storage related types and attributes that
|
|||
|
|
* are available for given InstanceType. </p>
|
|||
|
|
*/
|
|||
|
|
inline Limits& AddStorageTypes(const StorageType& value) { m_storageTypesHasBeenSet = true; m_storageTypes.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>StorageType represents the list of storage related types and attributes that
|
|||
|
|
* are available for given InstanceType. </p>
|
|||
|
|
*/
|
|||
|
|
inline Limits& AddStorageTypes(StorageType&& value) { m_storageTypesHasBeenSet = true; m_storageTypes.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline const InstanceLimits& GetInstanceLimits() const{ return m_instanceLimits; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline bool InstanceLimitsHasBeenSet() const { return m_instanceLimitsHasBeenSet; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline void SetInstanceLimits(const InstanceLimits& value) { m_instanceLimitsHasBeenSet = true; m_instanceLimits = value; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline void SetInstanceLimits(InstanceLimits&& value) { m_instanceLimitsHasBeenSet = true; m_instanceLimits = std::move(value); }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline Limits& WithInstanceLimits(const InstanceLimits& value) { SetInstanceLimits(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline Limits& WithInstanceLimits(InstanceLimits&& value) { SetInstanceLimits(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> List of additional limits that are specific to a given InstanceType and for
|
|||
|
|
* each of it's <code> <a>InstanceRole</a> </code> . </p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<AdditionalLimit>& GetAdditionalLimits() const{ return m_additionalLimits; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> List of additional limits that are specific to a given InstanceType and for
|
|||
|
|
* each of it's <code> <a>InstanceRole</a> </code> . </p>
|
|||
|
|
*/
|
|||
|
|
inline bool AdditionalLimitsHasBeenSet() const { return m_additionalLimitsHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> List of additional limits that are specific to a given InstanceType and for
|
|||
|
|
* each of it's <code> <a>InstanceRole</a> </code> . </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAdditionalLimits(const Aws::Vector<AdditionalLimit>& value) { m_additionalLimitsHasBeenSet = true; m_additionalLimits = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> List of additional limits that are specific to a given InstanceType and for
|
|||
|
|
* each of it's <code> <a>InstanceRole</a> </code> . </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAdditionalLimits(Aws::Vector<AdditionalLimit>&& value) { m_additionalLimitsHasBeenSet = true; m_additionalLimits = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> List of additional limits that are specific to a given InstanceType and for
|
|||
|
|
* each of it's <code> <a>InstanceRole</a> </code> . </p>
|
|||
|
|
*/
|
|||
|
|
inline Limits& WithAdditionalLimits(const Aws::Vector<AdditionalLimit>& value) { SetAdditionalLimits(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> List of additional limits that are specific to a given InstanceType and for
|
|||
|
|
* each of it's <code> <a>InstanceRole</a> </code> . </p>
|
|||
|
|
*/
|
|||
|
|
inline Limits& WithAdditionalLimits(Aws::Vector<AdditionalLimit>&& value) { SetAdditionalLimits(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> List of additional limits that are specific to a given InstanceType and for
|
|||
|
|
* each of it's <code> <a>InstanceRole</a> </code> . </p>
|
|||
|
|
*/
|
|||
|
|
inline Limits& AddAdditionalLimits(const AdditionalLimit& value) { m_additionalLimitsHasBeenSet = true; m_additionalLimits.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> List of additional limits that are specific to a given InstanceType and for
|
|||
|
|
* each of it's <code> <a>InstanceRole</a> </code> . </p>
|
|||
|
|
*/
|
|||
|
|
inline Limits& AddAdditionalLimits(AdditionalLimit&& value) { m_additionalLimitsHasBeenSet = true; m_additionalLimits.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::Vector<StorageType> m_storageTypes;
|
|||
|
|
bool m_storageTypesHasBeenSet;
|
|||
|
|
|
|||
|
|
InstanceLimits m_instanceLimits;
|
|||
|
|
bool m_instanceLimitsHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<AdditionalLimit> m_additionalLimits;
|
|||
|
|
bool m_additionalLimitsHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ElasticsearchService
|
|||
|
|
} // namespace Aws
|