Show / Hide Table of Contents

Class JobArgs

Inheritance
System.Object
InputArgs
ResourceArgs
JobArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.BigQuery
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class JobArgs : ResourceArgs

Constructors

View Source

JobArgs()

Declaration
public JobArgs()

Properties

View Source

Copy

Copies a table. Structure is documented below.

Declaration
public Input<JobCopyArgs> Copy { get; set; }
Property Value
Type Description
Input<JobCopyArgs>
View Source

Extract

Configures an extract job. Structure is documented below.

Declaration
public Input<JobExtractArgs> Extract { get; set; }
Property Value
Type Description
Input<JobExtractArgs>
View Source

JobId

The ID of the job. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-). The maximum length is 1,024 characters.

Declaration
public Input<string> JobId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

JobTimeoutMs

Job timeout in milliseconds. If this time limit is exceeded, BigQuery may attempt to terminate the job.

Declaration
public Input<string> JobTimeoutMs { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Labels

The labels associated with this job. You can use these to organize and group your jobs.

Declaration
public InputMap<string> Labels { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Load

Configures a load job. Structure is documented below.

Declaration
public Input<JobLoadArgs> Load { get; set; }
Property Value
Type Description
Input<JobLoadArgs>
View Source

Location

The geographic location of the job. The default value is US.

Declaration
public Input<string> Location { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Project

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Declaration
public Input<string> Project { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Query

Configures a query job. Structure is documented below.

Declaration
public Input<JobQueryArgs> Query { get; set; }
Property Value
Type Description
Input<JobQueryArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.