pub struct IntegrationRuntimeCustomSetupScriptProperties {
pub blob_container_uri: Option<String>,
pub sas_token: Option<SecureString>,
}Expand description
Custom setup script properties for a managed dedicated integration runtime.
Fields§
§blob_container_uri: Option<String>The URI of the Azure blob container that contains the custom setup script.
sas_token: Option<SecureString>Azure Synapse secure string definition. The string value will be masked with asterisks ‘*’ during Get or List API calls.
Implementations§
Trait Implementations§
Source§impl Clone for IntegrationRuntimeCustomSetupScriptProperties
impl Clone for IntegrationRuntimeCustomSetupScriptProperties
Source§fn clone(&self) -> IntegrationRuntimeCustomSetupScriptProperties
fn clone(&self) -> IntegrationRuntimeCustomSetupScriptProperties
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 Default for IntegrationRuntimeCustomSetupScriptProperties
impl Default for IntegrationRuntimeCustomSetupScriptProperties
Source§fn default() -> IntegrationRuntimeCustomSetupScriptProperties
fn default() -> IntegrationRuntimeCustomSetupScriptProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegrationRuntimeCustomSetupScriptProperties
impl<'de> Deserialize<'de> for IntegrationRuntimeCustomSetupScriptProperties
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 PartialEq for IntegrationRuntimeCustomSetupScriptProperties
impl PartialEq for IntegrationRuntimeCustomSetupScriptProperties
Source§fn eq(&self, other: &IntegrationRuntimeCustomSetupScriptProperties) -> bool
fn eq(&self, other: &IntegrationRuntimeCustomSetupScriptProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IntegrationRuntimeCustomSetupScriptProperties
Auto Trait Implementations§
impl Freeze for IntegrationRuntimeCustomSetupScriptProperties
impl RefUnwindSafe for IntegrationRuntimeCustomSetupScriptProperties
impl Send for IntegrationRuntimeCustomSetupScriptProperties
impl Sync for IntegrationRuntimeCustomSetupScriptProperties
impl Unpin for IntegrationRuntimeCustomSetupScriptProperties
impl UnwindSafe for IntegrationRuntimeCustomSetupScriptProperties
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