pub struct GetDevicePoolCompatibilityRequest {
pub app_arn: Option<String>,
pub configuration: Option<ScheduleRunConfiguration>,
pub device_pool_arn: String,
pub test: Option<ScheduleRunTest>,
pub test_type: Option<String>,
}Expand description
Represents a request to the get device pool compatibility operation.
Fields§
§app_arn: Option<String>The ARN of the app that is associated with the specified device pool.
configuration: Option<ScheduleRunConfiguration>An object that contains information about the settings for a run.
device_pool_arn: StringThe device pool's ARN.
test: Option<ScheduleRunTest>Information about the uploaded test to be run against the device pool.
test_type: Option<String>The test type for the specified device pool.
Allowed values include the following:
-
BUILTINFUZZ.
-
BUILTINEXPLORER. For Android, an app explorer that traverses an Android app, interacting with it and capturing screenshots at the same time.
-
APPIUMJAVAJUNIT.
-
APPIUMJAVATESTNG.
-
APPIUMPYTHON.
-
APPIUMNODE.
-
APPIUMRUBY.
-
APPIUMWEBJAVAJUNIT.
-
APPIUMWEBJAVATESTNG.
-
APPIUMWEBPYTHON.
-
APPIUMWEBNODE.
-
APPIUMWEBRUBY.
-
CALABASH.
-
INSTRUMENTATION.
-
UIAUTOMATION.
-
UIAUTOMATOR.
-
XCTEST.
-
XCTESTUI.
Trait Implementations§
Source§impl Clone for GetDevicePoolCompatibilityRequest
impl Clone for GetDevicePoolCompatibilityRequest
Source§fn clone(&self) -> GetDevicePoolCompatibilityRequest
fn clone(&self) -> GetDevicePoolCompatibilityRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GetDevicePoolCompatibilityRequest
impl Default for GetDevicePoolCompatibilityRequest
Source§fn default() -> GetDevicePoolCompatibilityRequest
fn default() -> GetDevicePoolCompatibilityRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetDevicePoolCompatibilityRequest
impl PartialEq for GetDevicePoolCompatibilityRequest
Source§fn eq(&self, other: &GetDevicePoolCompatibilityRequest) -> bool
fn eq(&self, other: &GetDevicePoolCompatibilityRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetDevicePoolCompatibilityRequest
Auto Trait Implementations§
impl Freeze for GetDevicePoolCompatibilityRequest
impl RefUnwindSafe for GetDevicePoolCompatibilityRequest
impl Send for GetDevicePoolCompatibilityRequest
impl Sync for GetDevicePoolCompatibilityRequest
impl Unpin for GetDevicePoolCompatibilityRequest
impl UnwindSafe for GetDevicePoolCompatibilityRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more