pub struct Simulation {
pub cloud_provider: Option<String>,
pub create_time: Option<DateTime<Utc>>,
pub name: Option<String>,
pub resource_value_configs_metadata: Option<Vec<ResourceValueConfigMetadata>>,
}Expand description
Attack path simulation
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- simulations get organizations (response)
Fields§
§cloud_provider: Option<String>Indicates which cloud provider was used in this simulation.
create_time: Option<DateTime<Utc>>Output only. Time simulation was created
name: Option<String>Full resource name of the Simulation: organizations/123/simulations/456
resource_value_configs_metadata: Option<Vec<ResourceValueConfigMetadata>>Resource value configurations’ metadata used in this simulation. Maximum of 100.
Trait Implementations§
Source§impl Clone for Simulation
impl Clone for Simulation
Source§fn clone(&self) -> Simulation
fn clone(&self) -> Simulation
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 Debug for Simulation
impl Debug for Simulation
Source§impl Default for Simulation
impl Default for Simulation
Source§fn default() -> Simulation
fn default() -> Simulation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Simulation
impl<'de> Deserialize<'de> for Simulation
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 Serialize for Simulation
impl Serialize for Simulation
impl ResponseResult for Simulation
Auto Trait Implementations§
impl Freeze for Simulation
impl RefUnwindSafe for Simulation
impl Send for Simulation
impl Sync for Simulation
impl Unpin for Simulation
impl UnwindSafe for Simulation
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