pub struct PoolUpdateProperties {
pub provisioning_state: Option<ProvisioningState>,
pub maximum_concurrency: Option<i32>,
pub organization_profile: Option<OrganizationProfileUnion>,
pub agent_profile: Option<AgentProfileUnion>,
pub fabric_profile: Option<FabricProfileUnion>,
pub dev_center_project_resource_id: Option<String>,
}Expand description
The updatable properties of the Pool.
Fields§
§provisioning_state: Option<ProvisioningState>The status of the current operation.
maximum_concurrency: Option<i32>Defines how many resources can there be created at any given time.
organization_profile: Option<OrganizationProfileUnion>Defines the organization in which the pool will be used.
agent_profile: Option<AgentProfileUnion>The agent profile of the machines in the pool.
fabric_profile: Option<FabricProfileUnion>Defines the type of fabric the agent will run on.
dev_center_project_resource_id: Option<String>The resource id of the DevCenter Project the pool belongs to.
Implementations§
Trait Implementations§
Source§impl Clone for PoolUpdateProperties
impl Clone for PoolUpdateProperties
Source§fn clone(&self) -> PoolUpdateProperties
fn clone(&self) -> PoolUpdateProperties
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PoolUpdateProperties
impl Debug for PoolUpdateProperties
Source§impl Default for PoolUpdateProperties
impl Default for PoolUpdateProperties
Source§fn default() -> PoolUpdateProperties
fn default() -> PoolUpdateProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PoolUpdateProperties
impl<'de> Deserialize<'de> for PoolUpdateProperties
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 for PoolUpdateProperties
impl PartialEq for PoolUpdateProperties
Source§fn eq(&self, other: &PoolUpdateProperties) -> bool
fn eq(&self, other: &PoolUpdateProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PoolUpdateProperties
impl Serialize for PoolUpdateProperties
impl StructuralPartialEq for PoolUpdateProperties
Auto Trait Implementations§
impl Freeze for PoolUpdateProperties
impl RefUnwindSafe for PoolUpdateProperties
impl Send for PoolUpdateProperties
impl Sync for PoolUpdateProperties
impl Unpin for PoolUpdateProperties
impl UnsafeUnpin for PoolUpdateProperties
impl UnwindSafe for PoolUpdateProperties
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