pub struct JobStepOutput {
pub type_: Option<Type>,
pub subscription_id: Option<String>,
pub resource_group_name: Option<String>,
pub server_name: String,
pub database_name: String,
pub schema_name: Option<String>,
pub table_name: String,
pub credential: Option<String>,
}Expand description
The output configuration of a job step.
Fields§
§type_: Option<Type>The output destination type.
subscription_id: Option<String>The output destination subscription id.
resource_group_name: Option<String>The output destination resource group.
server_name: StringThe output destination server name.
database_name: StringThe output destination database.
schema_name: Option<String>The output destination schema.
table_name: StringThe output destination table.
credential: Option<String>The resource ID of the credential to use to connect to the output destination.
Implementations§
Trait Implementations§
Source§impl Clone for JobStepOutput
impl Clone for JobStepOutput
Source§fn clone(&self) -> JobStepOutput
fn clone(&self) -> JobStepOutput
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 JobStepOutput
impl Debug for JobStepOutput
Source§impl<'de> Deserialize<'de> for JobStepOutput
impl<'de> Deserialize<'de> for JobStepOutput
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 JobStepOutput
impl PartialEq for JobStepOutput
Source§impl Serialize for JobStepOutput
impl Serialize for JobStepOutput
impl StructuralPartialEq for JobStepOutput
Auto Trait Implementations§
impl Freeze for JobStepOutput
impl RefUnwindSafe for JobStepOutput
impl Send for JobStepOutput
impl Sync for JobStepOutput
impl Unpin for JobStepOutput
impl UnwindSafe for JobStepOutput
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