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-ec2/include/aws/ec2/model/AvailableCapacity.h

145 lines
6.0 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/core/utils/memory/stl/AWSStreamFwd.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/ec2/model/InstanceCapacity.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* <p>The capacity information for instances that can be launched onto the
* Dedicated Host. </p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AvailableCapacity">AWS
* API Reference</a></p>
*/
class AWS_EC2_API AvailableCapacity
{
public:
AvailableCapacity();
AvailableCapacity(const Aws::Utils::Xml::XmlNode& xmlNode);
AvailableCapacity& 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 number of instances that can be launched onto the Dedicated Host
* depending on the host's available capacity. For Dedicated Hosts that support
* multiple instance types, this parameter represents the number of instances for
* each instance size that is supported on the host.</p>
*/
inline const Aws::Vector<InstanceCapacity>& GetAvailableInstanceCapacity() const{ return m_availableInstanceCapacity; }
/**
* <p>The number of instances that can be launched onto the Dedicated Host
* depending on the host's available capacity. For Dedicated Hosts that support
* multiple instance types, this parameter represents the number of instances for
* each instance size that is supported on the host.</p>
*/
inline bool AvailableInstanceCapacityHasBeenSet() const { return m_availableInstanceCapacityHasBeenSet; }
/**
* <p>The number of instances that can be launched onto the Dedicated Host
* depending on the host's available capacity. For Dedicated Hosts that support
* multiple instance types, this parameter represents the number of instances for
* each instance size that is supported on the host.</p>
*/
inline void SetAvailableInstanceCapacity(const Aws::Vector<InstanceCapacity>& value) { m_availableInstanceCapacityHasBeenSet = true; m_availableInstanceCapacity = value; }
/**
* <p>The number of instances that can be launched onto the Dedicated Host
* depending on the host's available capacity. For Dedicated Hosts that support
* multiple instance types, this parameter represents the number of instances for
* each instance size that is supported on the host.</p>
*/
inline void SetAvailableInstanceCapacity(Aws::Vector<InstanceCapacity>&& value) { m_availableInstanceCapacityHasBeenSet = true; m_availableInstanceCapacity = std::move(value); }
/**
* <p>The number of instances that can be launched onto the Dedicated Host
* depending on the host's available capacity. For Dedicated Hosts that support
* multiple instance types, this parameter represents the number of instances for
* each instance size that is supported on the host.</p>
*/
inline AvailableCapacity& WithAvailableInstanceCapacity(const Aws::Vector<InstanceCapacity>& value) { SetAvailableInstanceCapacity(value); return *this;}
/**
* <p>The number of instances that can be launched onto the Dedicated Host
* depending on the host's available capacity. For Dedicated Hosts that support
* multiple instance types, this parameter represents the number of instances for
* each instance size that is supported on the host.</p>
*/
inline AvailableCapacity& WithAvailableInstanceCapacity(Aws::Vector<InstanceCapacity>&& value) { SetAvailableInstanceCapacity(std::move(value)); return *this;}
/**
* <p>The number of instances that can be launched onto the Dedicated Host
* depending on the host's available capacity. For Dedicated Hosts that support
* multiple instance types, this parameter represents the number of instances for
* each instance size that is supported on the host.</p>
*/
inline AvailableCapacity& AddAvailableInstanceCapacity(const InstanceCapacity& value) { m_availableInstanceCapacityHasBeenSet = true; m_availableInstanceCapacity.push_back(value); return *this; }
/**
* <p>The number of instances that can be launched onto the Dedicated Host
* depending on the host's available capacity. For Dedicated Hosts that support
* multiple instance types, this parameter represents the number of instances for
* each instance size that is supported on the host.</p>
*/
inline AvailableCapacity& AddAvailableInstanceCapacity(InstanceCapacity&& value) { m_availableInstanceCapacityHasBeenSet = true; m_availableInstanceCapacity.push_back(std::move(value)); return *this; }
/**
* <p>The number of vCPUs available for launching instances onto the Dedicated
* Host.</p>
*/
inline int GetAvailableVCpus() const{ return m_availableVCpus; }
/**
* <p>The number of vCPUs available for launching instances onto the Dedicated
* Host.</p>
*/
inline bool AvailableVCpusHasBeenSet() const { return m_availableVCpusHasBeenSet; }
/**
* <p>The number of vCPUs available for launching instances onto the Dedicated
* Host.</p>
*/
inline void SetAvailableVCpus(int value) { m_availableVCpusHasBeenSet = true; m_availableVCpus = value; }
/**
* <p>The number of vCPUs available for launching instances onto the Dedicated
* Host.</p>
*/
inline AvailableCapacity& WithAvailableVCpus(int value) { SetAvailableVCpus(value); return *this;}
private:
Aws::Vector<InstanceCapacity> m_availableInstanceCapacity;
bool m_availableInstanceCapacityHasBeenSet;
int m_availableVCpus;
bool m_availableVCpusHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws