pub struct JobConfiguration {
pub copy: Option<JobConfigurationTableCopy>,
pub dry_run: Option<bool>,
pub extract: Option<JobConfigurationExtract>,
pub job_timeout_ms: Option<i64>,
pub job_type: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub load: Option<JobConfigurationLoad>,
pub max_slots: Option<i32>,
pub query: Option<JobConfigurationQuery>,
pub reservation: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§copy: Option<JobConfigurationTableCopy>[Pick one] Copies a table.
dry_run: Option<bool>Optional. If set, don’t actually run this job. A valid query will return a mostly empty response with some processing statistics, while an invalid query will return the same error it would if it wasn’t a dry run. Behavior of non-query jobs is undefined.
extract: Option<JobConfigurationExtract>[Pick one] Configures an extract job.
job_timeout_ms: Option<i64>Optional. Job timeout in milliseconds relative to the job creation time. If this time limit is exceeded, BigQuery attempts to stop the job, but might not always succeed in canceling it before the job completes. For example, a job that takes more than 60 seconds to complete has a better chance of being stopped than a job that takes 10 seconds to complete.
job_type: Option<String>Output only. The type of the job. Can be QUERY, LOAD, EXTRACT, COPY or UNKNOWN.
labels: Option<HashMap<String, String>>The labels associated with this job. You can use these to organize and group your jobs. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.
load: Option<JobConfigurationLoad>[Pick one] Configures a load job.
max_slots: Option<i32>Optional. A target limit on the rate of slot consumption by this job. If set to a value > 0, BigQuery will attempt to limit the rate of slot consumption by this job to keep it below the configured limit, even if the job is eligible for more slots based on fair scheduling. The unused slots will be available for other jobs and queries to use. Note: This feature is not yet generally available.
query: Option<JobConfigurationQuery>[Pick one] Configures a query job.
reservation: Option<String>Optional. The reservation that job would use. User can specify a reservation to execute the job. If reservation is not set, reservation is determined based on the rules defined by the reservation assignments. The expected format is projects/{project}/locations/{location}/reservations/{reservation}.
Trait Implementations§
Source§impl Clone for JobConfiguration
impl Clone for JobConfiguration
Source§fn clone(&self) -> JobConfiguration
fn clone(&self) -> JobConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more