pub struct UpdateSystemTemplateRequest {
pub compatible_namespace_version: Option<i64>,
pub definition: DefinitionDocument,
pub id: String,
}
Fields§
§compatible_namespace_version: Option<i64>
The version of the user's namespace. Defaults to the latest version of the user's namespace.
If no value is specified, the latest version is used by default.
definition: DefinitionDocument
The DefinitionDocument
that contains the updated system definition.
id: String
The ID of the system to be updated.
The ID should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:system:SYSTEMNAME
Trait Implementations§
Source§impl Clone for UpdateSystemTemplateRequest
impl Clone for UpdateSystemTemplateRequest
Source§fn clone(&self) -> UpdateSystemTemplateRequest
fn clone(&self) -> UpdateSystemTemplateRequest
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 UpdateSystemTemplateRequest
impl Debug for UpdateSystemTemplateRequest
Source§impl Default for UpdateSystemTemplateRequest
impl Default for UpdateSystemTemplateRequest
Source§fn default() -> UpdateSystemTemplateRequest
fn default() -> UpdateSystemTemplateRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for UpdateSystemTemplateRequest
Auto Trait Implementations§
impl Freeze for UpdateSystemTemplateRequest
impl RefUnwindSafe for UpdateSystemTemplateRequest
impl Send for UpdateSystemTemplateRequest
impl Sync for UpdateSystemTemplateRequest
impl Unpin for UpdateSystemTemplateRequest
impl UnwindSafe for UpdateSystemTemplateRequest
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