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/InstanceProfile.h

310 lines
12 KiB
C++

/**
* 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/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace DeviceFarm
{
namespace Model
{
/**
* <p>Represents the instance profile.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/InstanceProfile">AWS
* API Reference</a></p>
*/
class AWS_DEVICEFARM_API InstanceProfile
{
public:
InstanceProfile();
InstanceProfile(Aws::Utils::Json::JsonView jsonValue);
InstanceProfile& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The Amazon Resource Name (ARN) of the instance profile.</p>
*/
inline const Aws::String& GetArn() const{ return m_arn; }
/**
* <p>The Amazon Resource Name (ARN) of the instance profile.</p>
*/
inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
/**
* <p>The Amazon Resource Name (ARN) of the instance profile.</p>
*/
inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the instance profile.</p>
*/
inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the instance profile.</p>
*/
inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the instance profile.</p>
*/
inline InstanceProfile& WithArn(const Aws::String& value) { SetArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the instance profile.</p>
*/
inline InstanceProfile& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the instance profile.</p>
*/
inline InstanceProfile& WithArn(const char* value) { SetArn(value); return *this;}
/**
* <p>When set to <code>true</code>, Device Farm removes app packages after a test
* run. The default value is <code>false</code> for private devices.</p>
*/
inline bool GetPackageCleanup() const{ return m_packageCleanup; }
/**
* <p>When set to <code>true</code>, Device Farm removes app packages after a test
* run. The default value is <code>false</code> for private devices.</p>
*/
inline bool PackageCleanupHasBeenSet() const { return m_packageCleanupHasBeenSet; }
/**
* <p>When set to <code>true</code>, Device Farm removes app packages after a test
* run. The default value is <code>false</code> for private devices.</p>
*/
inline void SetPackageCleanup(bool value) { m_packageCleanupHasBeenSet = true; m_packageCleanup = value; }
/**
* <p>When set to <code>true</code>, Device Farm removes app packages after a test
* run. The default value is <code>false</code> for private devices.</p>
*/
inline InstanceProfile& WithPackageCleanup(bool value) { SetPackageCleanup(value); return *this;}
/**
* <p>An array of strings containing the list of app packages that should not be
* cleaned up from the device after a test run completes.</p> <p>The list of
* packages is considered only if you set <code>packageCleanup</code> to
* <code>true</code>.</p>
*/
inline const Aws::Vector<Aws::String>& GetExcludeAppPackagesFromCleanup() const{ return m_excludeAppPackagesFromCleanup; }
/**
* <p>An array of strings containing the list of app packages that should not be
* cleaned up from the device after a test run completes.</p> <p>The list of
* packages is considered only if you set <code>packageCleanup</code> to
* <code>true</code>.</p>
*/
inline bool ExcludeAppPackagesFromCleanupHasBeenSet() const { return m_excludeAppPackagesFromCleanupHasBeenSet; }
/**
* <p>An array of strings containing the list of app packages that should not be
* cleaned up from the device after a test run completes.</p> <p>The list of
* packages is considered only if you set <code>packageCleanup</code> to
* <code>true</code>.</p>
*/
inline void SetExcludeAppPackagesFromCleanup(const Aws::Vector<Aws::String>& value) { m_excludeAppPackagesFromCleanupHasBeenSet = true; m_excludeAppPackagesFromCleanup = value; }
/**
* <p>An array of strings containing the list of app packages that should not be
* cleaned up from the device after a test run completes.</p> <p>The list of
* packages is considered only if you set <code>packageCleanup</code> to
* <code>true</code>.</p>
*/
inline void SetExcludeAppPackagesFromCleanup(Aws::Vector<Aws::String>&& value) { m_excludeAppPackagesFromCleanupHasBeenSet = true; m_excludeAppPackagesFromCleanup = std::move(value); }
/**
* <p>An array of strings containing the list of app packages that should not be
* cleaned up from the device after a test run completes.</p> <p>The list of
* packages is considered only if you set <code>packageCleanup</code> to
* <code>true</code>.</p>
*/
inline InstanceProfile& WithExcludeAppPackagesFromCleanup(const Aws::Vector<Aws::String>& value) { SetExcludeAppPackagesFromCleanup(value); return *this;}
/**
* <p>An array of strings containing the list of app packages that should not be
* cleaned up from the device after a test run completes.</p> <p>The list of
* packages is considered only if you set <code>packageCleanup</code> to
* <code>true</code>.</p>
*/
inline InstanceProfile& WithExcludeAppPackagesFromCleanup(Aws::Vector<Aws::String>&& value) { SetExcludeAppPackagesFromCleanup(std::move(value)); return *this;}
/**
* <p>An array of strings containing the list of app packages that should not be
* cleaned up from the device after a test run completes.</p> <p>The list of
* packages is considered only if you set <code>packageCleanup</code> to
* <code>true</code>.</p>
*/
inline InstanceProfile& AddExcludeAppPackagesFromCleanup(const Aws::String& value) { m_excludeAppPackagesFromCleanupHasBeenSet = true; m_excludeAppPackagesFromCleanup.push_back(value); return *this; }
/**
* <p>An array of strings containing the list of app packages that should not be
* cleaned up from the device after a test run completes.</p> <p>The list of
* packages is considered only if you set <code>packageCleanup</code> to
* <code>true</code>.</p>
*/
inline InstanceProfile& AddExcludeAppPackagesFromCleanup(Aws::String&& value) { m_excludeAppPackagesFromCleanupHasBeenSet = true; m_excludeAppPackagesFromCleanup.push_back(std::move(value)); return *this; }
/**
* <p>An array of strings containing the list of app packages that should not be
* cleaned up from the device after a test run completes.</p> <p>The list of
* packages is considered only if you set <code>packageCleanup</code> to
* <code>true</code>.</p>
*/
inline InstanceProfile& AddExcludeAppPackagesFromCleanup(const char* value) { m_excludeAppPackagesFromCleanupHasBeenSet = true; m_excludeAppPackagesFromCleanup.push_back(value); return *this; }
/**
* <p>When set to <code>true</code>, Device Farm reboots the instance after a test
* run. The default value is <code>true</code>.</p>
*/
inline bool GetRebootAfterUse() const{ return m_rebootAfterUse; }
/**
* <p>When set to <code>true</code>, Device Farm reboots the instance after a test
* run. The default value is <code>true</code>.</p>
*/
inline bool RebootAfterUseHasBeenSet() const { return m_rebootAfterUseHasBeenSet; }
/**
* <p>When set to <code>true</code>, Device Farm reboots the instance after a test
* run. The default value is <code>true</code>.</p>
*/
inline void SetRebootAfterUse(bool value) { m_rebootAfterUseHasBeenSet = true; m_rebootAfterUse = value; }
/**
* <p>When set to <code>true</code>, Device Farm reboots the instance after a test
* run. The default value is <code>true</code>.</p>
*/
inline InstanceProfile& WithRebootAfterUse(bool value) { SetRebootAfterUse(value); return *this;}
/**
* <p>The name of the instance profile.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>The name of the instance profile.</p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p>The name of the instance profile.</p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p>The name of the instance profile.</p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p>The name of the instance profile.</p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p>The name of the instance profile.</p>
*/
inline InstanceProfile& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>The name of the instance profile.</p>
*/
inline InstanceProfile& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>The name of the instance profile.</p>
*/
inline InstanceProfile& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>The description of the instance profile.</p>
*/
inline const Aws::String& GetDescription() const{ return m_description; }
/**
* <p>The description of the instance profile.</p>
*/
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
/**
* <p>The description of the instance profile.</p>
*/
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
/**
* <p>The description of the instance profile.</p>
*/
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
/**
* <p>The description of the instance profile.</p>
*/
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
/**
* <p>The description of the instance profile.</p>
*/
inline InstanceProfile& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
/**
* <p>The description of the instance profile.</p>
*/
inline InstanceProfile& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
/**
* <p>The description of the instance profile.</p>
*/
inline InstanceProfile& WithDescription(const char* value) { SetDescription(value); return *this;}
private:
Aws::String m_arn;
bool m_arnHasBeenSet;
bool m_packageCleanup;
bool m_packageCleanupHasBeenSet;
Aws::Vector<Aws::String> m_excludeAppPackagesFromCleanup;
bool m_excludeAppPackagesFromCleanupHasBeenSet;
bool m_rebootAfterUse;
bool m_rebootAfterUseHasBeenSet;
Aws::String m_name;
bool m_nameHasBeenSet;
Aws::String m_description;
bool m_descriptionHasBeenSet;
};
} // namespace Model
} // namespace DeviceFarm
} // namespace Aws