pub struct CfsSessionPostRequest {
pub name: String,
pub configuration_name: String,
pub configuration_limit: Option<String>,
pub ansible_limit: Option<String>,
pub ansible_config: Option<String>,
pub ansible_verbosity: Option<u8>,
pub ansible_passthrough: Option<String>,
pub target: Target,
pub tags: Option<HashMap<String, String>>,
pub debug_on_failure: bool,
}
Fields§
§name: String
§configuration_name: String
§configuration_limit: Option<String>
§ansible_limit: Option<String>
§ansible_config: Option<String>
§ansible_verbosity: Option<u8>
§ansible_passthrough: Option<String>
§target: Target
§debug_on_failure: bool
Implementations§
Source§impl CfsSessionPostRequest
impl CfsSessionPostRequest
pub fn new( name: String, configuration_name: String, configuration_limit: Option<String>, ansible_limit: Option<String>, ansible_config: Option<String>, ansible_verbosity: Option<u8>, ansible_passthrough: Option<String>, is_target_definition_image: bool, groups_name: Option<Vec<String>>, base_image_id: Option<String>, tags: Option<HashMap<String, String>>, debug_on_failure: bool, result_image_name: Option<String>, ) -> Self
Trait Implementations§
Source§impl Clone for CfsSessionPostRequest
impl Clone for CfsSessionPostRequest
Source§fn clone(&self) -> CfsSessionPostRequest
fn clone(&self) -> CfsSessionPostRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CfsSessionPostRequest
impl Debug for CfsSessionPostRequest
Source§impl Default for CfsSessionPostRequest
impl Default for CfsSessionPostRequest
Source§fn default() -> CfsSessionPostRequest
fn default() -> CfsSessionPostRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CfsSessionPostRequest
impl<'de> Deserialize<'de> for CfsSessionPostRequest
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
Auto Trait Implementations§
impl Freeze for CfsSessionPostRequest
impl RefUnwindSafe for CfsSessionPostRequest
impl Send for CfsSessionPostRequest
impl Sync for CfsSessionPostRequest
impl Unpin for CfsSessionPostRequest
impl UnwindSafe for CfsSessionPostRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more