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-devicefarm/include/aws/devicefarm/model/DevicePoolCompatibilityResult.h

149 lines
5.0 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/devicefarm/DeviceFarm_EXPORTS.h>
#include <aws/devicefarm/model/Device.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/devicefarm/model/IncompatibilityMessage.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace DeviceFarm
{
namespace Model
{
/**
* <p>Represents a device pool compatibility result.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/DevicePoolCompatibilityResult">AWS
* API Reference</a></p>
*/
class AWS_DEVICEFARM_API DevicePoolCompatibilityResult
{
public:
DevicePoolCompatibilityResult();
DevicePoolCompatibilityResult(Aws::Utils::Json::JsonView jsonValue);
DevicePoolCompatibilityResult& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The device (phone or tablet) to return information about.</p>
*/
inline const Device& GetDevice() const{ return m_device; }
/**
* <p>The device (phone or tablet) to return information about.</p>
*/
inline bool DeviceHasBeenSet() const { return m_deviceHasBeenSet; }
/**
* <p>The device (phone or tablet) to return information about.</p>
*/
inline void SetDevice(const Device& value) { m_deviceHasBeenSet = true; m_device = value; }
/**
* <p>The device (phone or tablet) to return information about.</p>
*/
inline void SetDevice(Device&& value) { m_deviceHasBeenSet = true; m_device = std::move(value); }
/**
* <p>The device (phone or tablet) to return information about.</p>
*/
inline DevicePoolCompatibilityResult& WithDevice(const Device& value) { SetDevice(value); return *this;}
/**
* <p>The device (phone or tablet) to return information about.</p>
*/
inline DevicePoolCompatibilityResult& WithDevice(Device&& value) { SetDevice(std::move(value)); return *this;}
/**
* <p>Whether the result was compatible with the device pool.</p>
*/
inline bool GetCompatible() const{ return m_compatible; }
/**
* <p>Whether the result was compatible with the device pool.</p>
*/
inline bool CompatibleHasBeenSet() const { return m_compatibleHasBeenSet; }
/**
* <p>Whether the result was compatible with the device pool.</p>
*/
inline void SetCompatible(bool value) { m_compatibleHasBeenSet = true; m_compatible = value; }
/**
* <p>Whether the result was compatible with the device pool.</p>
*/
inline DevicePoolCompatibilityResult& WithCompatible(bool value) { SetCompatible(value); return *this;}
/**
* <p>Information about the compatibility.</p>
*/
inline const Aws::Vector<IncompatibilityMessage>& GetIncompatibilityMessages() const{ return m_incompatibilityMessages; }
/**
* <p>Information about the compatibility.</p>
*/
inline bool IncompatibilityMessagesHasBeenSet() const { return m_incompatibilityMessagesHasBeenSet; }
/**
* <p>Information about the compatibility.</p>
*/
inline void SetIncompatibilityMessages(const Aws::Vector<IncompatibilityMessage>& value) { m_incompatibilityMessagesHasBeenSet = true; m_incompatibilityMessages = value; }
/**
* <p>Information about the compatibility.</p>
*/
inline void SetIncompatibilityMessages(Aws::Vector<IncompatibilityMessage>&& value) { m_incompatibilityMessagesHasBeenSet = true; m_incompatibilityMessages = std::move(value); }
/**
* <p>Information about the compatibility.</p>
*/
inline DevicePoolCompatibilityResult& WithIncompatibilityMessages(const Aws::Vector<IncompatibilityMessage>& value) { SetIncompatibilityMessages(value); return *this;}
/**
* <p>Information about the compatibility.</p>
*/
inline DevicePoolCompatibilityResult& WithIncompatibilityMessages(Aws::Vector<IncompatibilityMessage>&& value) { SetIncompatibilityMessages(std::move(value)); return *this;}
/**
* <p>Information about the compatibility.</p>
*/
inline DevicePoolCompatibilityResult& AddIncompatibilityMessages(const IncompatibilityMessage& value) { m_incompatibilityMessagesHasBeenSet = true; m_incompatibilityMessages.push_back(value); return *this; }
/**
* <p>Information about the compatibility.</p>
*/
inline DevicePoolCompatibilityResult& AddIncompatibilityMessages(IncompatibilityMessage&& value) { m_incompatibilityMessagesHasBeenSet = true; m_incompatibilityMessages.push_back(std::move(value)); return *this; }
private:
Device m_device;
bool m_deviceHasBeenSet;
bool m_compatible;
bool m_compatibleHasBeenSet;
Aws::Vector<IncompatibilityMessage> m_incompatibilityMessages;
bool m_incompatibilityMessagesHasBeenSet;
};
} // namespace Model
} // namespace DeviceFarm
} // namespace Aws