pub struct ConversionWorkspace {
pub create_time: Option<DateTime<Utc>>,
pub destination: Option<DatabaseEngineInfo>,
pub destination_provider: Option<String>,
pub display_name: Option<String>,
pub global_settings: Option<HashMap<String, String>>,
pub has_uncommitted_changes: Option<bool>,
pub latest_commit_id: Option<String>,
pub latest_commit_time: Option<DateTime<Utc>>,
pub name: Option<String>,
pub source: Option<DatabaseEngineInfo>,
pub source_provider: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
The main conversion workspace resource entity.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§create_time: Option<DateTime<Utc>>Output only. The timestamp when the workspace resource was created.
destination: Option<DatabaseEngineInfo>Required. The destination engine details.
destination_provider: Option<String>Optional. The provider for the destination database.
display_name: Option<String>Optional. The display name for the workspace.
global_settings: Option<HashMap<String, String>>Optional. A generic list of settings for the workspace. The settings are database pair dependant and can indicate default behavior for the mapping rules engine or turn on or off specific features. Such examples can be: convert_foreign_key_to_interleave=true, skip_triggers=false, ignore_non_table_synonyms=true
has_uncommitted_changes: Option<bool>Output only. Whether the workspace has uncommitted changes (changes which were made after the workspace was committed).
latest_commit_id: Option<String>Output only. The latest commit ID.
latest_commit_time: Option<DateTime<Utc>>Output only. The timestamp when the workspace was committed.
name: Option<String>Full name of the workspace resource, in the form of: projects/{project}/locations/{location}/conversionWorkspaces/{conversion_workspace}.
source: Option<DatabaseEngineInfo>Required. The source engine details.
source_provider: Option<String>Optional. The provider for the source database.
update_time: Option<DateTime<Utc>>Output only. The timestamp when the workspace resource was last updated.
Trait Implementations§
Source§impl Clone for ConversionWorkspace
impl Clone for ConversionWorkspace
Source§fn clone(&self) -> ConversionWorkspace
fn clone(&self) -> ConversionWorkspace
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more