/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the opensearch-2021-01-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.OpenSearchService.Model
{
///
/// Limits for a given instance type and for each of its roles.
///
public partial class Limits
{
private List _additionalLimits = new List();
private InstanceLimits _instanceLimits;
private List _storageTypes = new List();
///
/// Gets and sets the property AdditionalLimits.
///
/// List of additional limits that are specific to a given instance type for each of its
/// instance roles.
///
///
public List AdditionalLimits
{
get { return this._additionalLimits; }
set { this._additionalLimits = value; }
}
// Check to see if AdditionalLimits property is set
internal bool IsSetAdditionalLimits()
{
return this._additionalLimits != null && this._additionalLimits.Count > 0;
}
///
/// Gets and sets the property InstanceLimits.
///
/// The limits for a given instance type.
///
///
public InstanceLimits InstanceLimits
{
get { return this._instanceLimits; }
set { this._instanceLimits = value; }
}
// Check to see if InstanceLimits property is set
internal bool IsSetInstanceLimits()
{
return this._instanceLimits != null;
}
///
/// Gets and sets the property StorageTypes.
///
/// Storage-related attributes that are available for a given instance type.
///
///
public List StorageTypes
{
get { return this._storageTypes; }
set { this._storageTypes = value; }
}
// Check to see if StorageTypes property is set
internal bool IsSetStorageTypes()
{
return this._storageTypes != null && this._storageTypes.Count > 0;
}
}
}