pub struct ComposeEnvironmentsMessage {
pub application_name: Option<String>,
pub group_name: Option<String>,
pub version_labels: Option<Vec<String>>,
}
Expand description
Request to create or update a group of environments.
Fields§
§application_name: Option<String>
The name of the application to which the specified source bundles belong.
group_name: Option<String>
The name of the group to which the target environments belong. Specify a group name only if the environment name defined in each target environment's manifest ends with a + (plus) character. See Environment Manifest (env.yaml) for details.
version_labels: Option<Vec<String>>
A list of version labels, specifying one or more application source bundles that belong to the target application. Each source bundle must include an environment manifest that specifies the name of the environment and the name of the solution stack to use, and optionally can specify environment links to create.
Trait Implementations§
Source§impl Clone for ComposeEnvironmentsMessage
impl Clone for ComposeEnvironmentsMessage
Source§fn clone(&self) -> ComposeEnvironmentsMessage
fn clone(&self) -> ComposeEnvironmentsMessage
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 ComposeEnvironmentsMessage
impl Debug for ComposeEnvironmentsMessage
Source§impl Default for ComposeEnvironmentsMessage
impl Default for ComposeEnvironmentsMessage
Source§fn default() -> ComposeEnvironmentsMessage
fn default() -> ComposeEnvironmentsMessage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ComposeEnvironmentsMessage
Auto Trait Implementations§
impl Freeze for ComposeEnvironmentsMessage
impl RefUnwindSafe for ComposeEnvironmentsMessage
impl Send for ComposeEnvironmentsMessage
impl Sync for ComposeEnvironmentsMessage
impl Unpin for ComposeEnvironmentsMessage
impl UnwindSafe for ComposeEnvironmentsMessage
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