pub struct AvalancheSubnetResourceResponse {Show 13 fields
pub id: Option<Uuid>,
pub owner_id: Option<Uuid>,
pub project_id: Option<Uuid>,
pub cloud_region_id: Option<String>,
pub name: Option<String>,
pub resource_type: Option<Box<ResourceType>>,
pub size: Option<Size>,
pub status: Option<Status>,
pub created: Option<String>,
pub subnet_nodes_resource_ids: Option<Vec<String>>,
pub subnet_config: Option<Box<AvalancheSubnetResourceBaseSubnetConfig>>,
pub subnet_control_key_secret_id: Option<String>,
pub subnet_status: Option<Box<AvalancheSubnetResourceBaseSubnetStatus>>,
}
Fields§
§id: Option<Uuid>
Resource ID
owner_id: Option<Uuid>
ID of the user who owns the resource
project_id: Option<Uuid>
ID of the project that the cloud region belongs to
cloud_region_id: Option<String>
ID (or name) of the cloud region that the resource belongs to
name: Option<String>
Resource name
resource_type: Option<Box<ResourceType>>
§size: Option<Size>
Resource size
status: Option<Status>
Resource status
created: Option<String>
Date/time when the project was created
subnet_nodes_resource_ids: Option<Vec<String>>
IDs (or names) of node resources that are part of the Subnet
subnet_config: Option<Box<AvalancheSubnetResourceBaseSubnetConfig>>
§subnet_control_key_secret_id: Option<String>
ID (or name) of the secret containing the Subnet control key
subnet_status: Option<Box<AvalancheSubnetResourceBaseSubnetStatus>>
Implementations§
Trait Implementations§
source§impl Clone for AvalancheSubnetResourceResponse
impl Clone for AvalancheSubnetResourceResponse
source§fn clone(&self) -> AvalancheSubnetResourceResponse
fn clone(&self) -> AvalancheSubnetResourceResponse
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<'de> Deserialize<'de> for AvalancheSubnetResourceResponse
impl<'de> Deserialize<'de> for AvalancheSubnetResourceResponse
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 AvalancheSubnetResourceResponse
impl PartialEq for AvalancheSubnetResourceResponse
source§fn eq(&self, other: &AvalancheSubnetResourceResponse) -> bool
fn eq(&self, other: &AvalancheSubnetResourceResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AvalancheSubnetResourceResponse
Auto Trait Implementations§
impl RefUnwindSafe for AvalancheSubnetResourceResponse
impl Send for AvalancheSubnetResourceResponse
impl Sync for AvalancheSubnetResourceResponse
impl Unpin for AvalancheSubnetResourceResponse
impl UnwindSafe for AvalancheSubnetResourceResponse
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