pub struct UpdateAppRawSourceRequest {
pub path: Option<String>,
pub summary: Option<String>,
pub value: Box<UpdateAppRawSourceRequestValue>,
pub policy: Option<Box<Policy>>,
pub deployment_message: Option<String>,
pub custom_path: Option<String>,
pub preserve_on_behalf_of: Option<bool>,
pub labels: Option<Vec<String>>,
pub skip_draft_deletion: Option<bool>,
pub allow_kind_change: Option<bool>,
}Fields§
§path: Option<String>§summary: Option<String>§value: Box<UpdateAppRawSourceRequestValue>§policy: Option<Box<Policy>>§deployment_message: Option<String>§custom_path: Option<String>§preserve_on_behalf_of: Option<bool>When true and the caller is a member of the ‘wm_deployers’ group, preserves the original on_behalf_of value in the policy instead of overwriting it.
labels: Option<Vec<String>>§skip_draft_deletion: Option<bool>When true (set by the CLI / git sync), deploying this app does not delete an existing user draft at the same path.
allow_kind_change: Option<bool>When true, this deploy may switch the app between low-code and raw. Without it, deploying a value to an app of the other kind is refused so an app is never converted by accident.
Implementations§
Source§impl UpdateAppRawSourceRequest
impl UpdateAppRawSourceRequest
pub fn new(value: UpdateAppRawSourceRequestValue) -> UpdateAppRawSourceRequest
Trait Implementations§
Source§impl Clone for UpdateAppRawSourceRequest
impl Clone for UpdateAppRawSourceRequest
Source§fn clone(&self) -> UpdateAppRawSourceRequest
fn clone(&self) -> UpdateAppRawSourceRequest
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 UpdateAppRawSourceRequest
impl Debug for UpdateAppRawSourceRequest
Source§impl Default for UpdateAppRawSourceRequest
impl Default for UpdateAppRawSourceRequest
Source§fn default() -> UpdateAppRawSourceRequest
fn default() -> UpdateAppRawSourceRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateAppRawSourceRequest
impl<'de> Deserialize<'de> for UpdateAppRawSourceRequest
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
impl StructuralPartialEq for UpdateAppRawSourceRequest
Auto Trait Implementations§
impl Freeze for UpdateAppRawSourceRequest
impl RefUnwindSafe for UpdateAppRawSourceRequest
impl Send for UpdateAppRawSourceRequest
impl Sync for UpdateAppRawSourceRequest
impl Unpin for UpdateAppRawSourceRequest
impl UnsafeUnpin for UpdateAppRawSourceRequest
impl UnwindSafe for UpdateAppRawSourceRequest
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