#[non_exhaustive]pub struct DataSourceRunActivityBuilder { /* private fields */ }
Expand description
A builder for DataSourceRunActivity
.
Implementations§
source§impl DataSourceRunActivityBuilder
impl DataSourceRunActivityBuilder
sourcepub fn database(self, input: impl Into<String>) -> Self
pub fn database(self, input: impl Into<String>) -> Self
The database included in the data source run activity.
sourcepub fn set_database(self, input: Option<String>) -> Self
pub fn set_database(self, input: Option<String>) -> Self
The database included in the data source run activity.
sourcepub fn get_database(&self) -> &Option<String>
pub fn get_database(&self) -> &Option<String>
The database included in the data source run activity.
sourcepub fn data_source_run_id(self, input: impl Into<String>) -> Self
pub fn data_source_run_id(self, input: impl Into<String>) -> Self
The identifier of the data source for the data source run activity.
sourcepub fn set_data_source_run_id(self, input: Option<String>) -> Self
pub fn set_data_source_run_id(self, input: Option<String>) -> Self
The identifier of the data source for the data source run activity.
sourcepub fn get_data_source_run_id(&self) -> &Option<String>
pub fn get_data_source_run_id(&self) -> &Option<String>
The identifier of the data source for the data source run activity.
sourcepub fn technical_name(self, input: impl Into<String>) -> Self
pub fn technical_name(self, input: impl Into<String>) -> Self
The technical name included in the data source run activity.
sourcepub fn set_technical_name(self, input: Option<String>) -> Self
pub fn set_technical_name(self, input: Option<String>) -> Self
The technical name included in the data source run activity.
sourcepub fn get_technical_name(&self) -> &Option<String>
pub fn get_technical_name(&self) -> &Option<String>
The technical name included in the data source run activity.
sourcepub fn data_asset_status(self, input: DataAssetActivityStatus) -> Self
pub fn data_asset_status(self, input: DataAssetActivityStatus) -> Self
The status of the asset included in the data source run activity.
sourcepub fn set_data_asset_status(
self,
input: Option<DataAssetActivityStatus>
) -> Self
pub fn set_data_asset_status( self, input: Option<DataAssetActivityStatus> ) -> Self
The status of the asset included in the data source run activity.
sourcepub fn get_data_asset_status(&self) -> &Option<DataAssetActivityStatus>
pub fn get_data_asset_status(&self) -> &Option<DataAssetActivityStatus>
The status of the asset included in the data source run activity.
sourcepub fn project_id(self, input: impl Into<String>) -> Self
pub fn project_id(self, input: impl Into<String>) -> Self
The project ID included in the data source run activity.
sourcepub fn set_project_id(self, input: Option<String>) -> Self
pub fn set_project_id(self, input: Option<String>) -> Self
The project ID included in the data source run activity.
sourcepub fn get_project_id(&self) -> &Option<String>
pub fn get_project_id(&self) -> &Option<String>
The project ID included in the data source run activity.
sourcepub fn data_asset_id(self, input: impl Into<String>) -> Self
pub fn data_asset_id(self, input: impl Into<String>) -> Self
The identifier of the asset included in the data source run activity.
sourcepub fn set_data_asset_id(self, input: Option<String>) -> Self
pub fn set_data_asset_id(self, input: Option<String>) -> Self
The identifier of the asset included in the data source run activity.
sourcepub fn get_data_asset_id(&self) -> &Option<String>
pub fn get_data_asset_id(&self) -> &Option<String>
The identifier of the asset included in the data source run activity.
sourcepub fn technical_description(self, input: impl Into<String>) -> Self
pub fn technical_description(self, input: impl Into<String>) -> Self
The technical description included in the data source run activity.
sourcepub fn set_technical_description(self, input: Option<String>) -> Self
pub fn set_technical_description(self, input: Option<String>) -> Self
The technical description included in the data source run activity.
sourcepub fn get_technical_description(&self) -> &Option<String>
pub fn get_technical_description(&self) -> &Option<String>
The technical description included in the data source run activity.
sourcepub fn error_message(self, input: DataSourceErrorMessage) -> Self
pub fn error_message(self, input: DataSourceErrorMessage) -> Self
The details of the error message that is returned if the operation cannot be successfully completed.
sourcepub fn set_error_message(self, input: Option<DataSourceErrorMessage>) -> Self
pub fn set_error_message(self, input: Option<DataSourceErrorMessage>) -> Self
The details of the error message that is returned if the operation cannot be successfully completed.
sourcepub fn get_error_message(&self) -> &Option<DataSourceErrorMessage>
pub fn get_error_message(&self) -> &Option<DataSourceErrorMessage>
The details of the error message that is returned if the operation cannot be successfully completed.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The timestamp of when data source run activity was created.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The timestamp of when data source run activity was created.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
The timestamp of when data source run activity was created.
sourcepub fn updated_at(self, input: DateTime) -> Self
pub fn updated_at(self, input: DateTime) -> Self
The timestamp of when data source run activity was updated.
sourcepub fn set_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_updated_at(self, input: Option<DateTime>) -> Self
The timestamp of when data source run activity was updated.
sourcepub fn get_updated_at(&self) -> &Option<DateTime>
pub fn get_updated_at(&self) -> &Option<DateTime>
The timestamp of when data source run activity was updated.
sourcepub fn build(self) -> DataSourceRunActivity
pub fn build(self) -> DataSourceRunActivity
Consumes the builder and constructs a DataSourceRunActivity
.
Trait Implementations§
source§impl Clone for DataSourceRunActivityBuilder
impl Clone for DataSourceRunActivityBuilder
source§fn clone(&self) -> DataSourceRunActivityBuilder
fn clone(&self) -> DataSourceRunActivityBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DataSourceRunActivityBuilder
impl Debug for DataSourceRunActivityBuilder
source§impl Default for DataSourceRunActivityBuilder
impl Default for DataSourceRunActivityBuilder
source§fn default() -> DataSourceRunActivityBuilder
fn default() -> DataSourceRunActivityBuilder
source§impl PartialEq for DataSourceRunActivityBuilder
impl PartialEq for DataSourceRunActivityBuilder
source§fn eq(&self, other: &DataSourceRunActivityBuilder) -> bool
fn eq(&self, other: &DataSourceRunActivityBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.