Struct azure_mgmt_datamigration::package_preview_2022_03::models::DataMigrationServiceStatusResponse
source · pub struct DataMigrationServiceStatusResponse {
pub agent_version: Option<String>,
pub agent_configuration: Option<Value>,
pub status: Option<String>,
pub vm_size: Option<String>,
pub supported_task_types: Vec<String>,
}
Expand description
Service health status
Fields§
§agent_version: Option<String>
The DMS instance agent version
agent_configuration: Option<Value>
Agent Configuration
status: Option<String>
The machine-readable status, such as ‘Initializing’, ‘Offline’, ‘Online’, ‘Deploying’, ‘Deleting’, ‘Stopped’, ‘Stopping’, ‘Starting’, ‘FailedToStart’, ‘FailedToStop’ or ‘Failed’
vm_size: Option<String>
The services virtual machine size, such as ‘Standard_D2_v2’
supported_task_types: Vec<String>
The list of supported task types
Implementations§
Trait Implementations§
source§impl Clone for DataMigrationServiceStatusResponse
impl Clone for DataMigrationServiceStatusResponse
source§fn clone(&self) -> DataMigrationServiceStatusResponse
fn clone(&self) -> DataMigrationServiceStatusResponse
Returns a copy 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 DataMigrationServiceStatusResponse
impl Default for DataMigrationServiceStatusResponse
source§fn default() -> DataMigrationServiceStatusResponse
fn default() -> DataMigrationServiceStatusResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DataMigrationServiceStatusResponse
impl<'de> Deserialize<'de> for DataMigrationServiceStatusResponse
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<DataMigrationServiceStatusResponse> for DataMigrationServiceStatusResponse
impl PartialEq<DataMigrationServiceStatusResponse> for DataMigrationServiceStatusResponse
source§fn eq(&self, other: &DataMigrationServiceStatusResponse) -> bool
fn eq(&self, other: &DataMigrationServiceStatusResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DataMigrationServiceStatusResponse
Auto Trait Implementations§
impl RefUnwindSafe for DataMigrationServiceStatusResponse
impl Send for DataMigrationServiceStatusResponse
impl Sync for DataMigrationServiceStatusResponse
impl Unpin for DataMigrationServiceStatusResponse
impl UnwindSafe for DataMigrationServiceStatusResponse
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