Class: Google::Apis::BigqueryV2::Job
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::Job
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb
Instance Attribute Summary collapse
-
#configuration ⇒ Google::Apis::BigqueryV2::JobConfiguration
[Required] Describes the job configuration.
-
#etag ⇒ String
[Output-only] A hash of this resource.
-
#id ⇒ String
[Output-only] Opaque ID field of the job Corresponds to the JSON property
id
. -
#job_reference ⇒ Google::Apis::BigqueryV2::JobReference
[Optional] Reference describing the unique-per-user name of the job.
-
#kind ⇒ String
[Output-only] The type of the resource.
-
#self_link ⇒ String
[Output-only] A URL that can be used to access this resource again.
-
#statistics ⇒ Google::Apis::BigqueryV2::JobStatistics
[Output-only] Information about the job, including starting time and ending time of the job.
-
#status ⇒ Google::Apis::BigqueryV2::JobStatus
[Output-only] The status of this job.
-
#user_email ⇒ String
[Output-only] Email address of the user who ran the job.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Job
constructor
A new instance of Job.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Job
Returns a new instance of Job
2206 2207 2208 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2206 def initialize(**args) update!(**args) end |
Instance Attribute Details
#configuration ⇒ Google::Apis::BigqueryV2::JobConfiguration
[Required] Describes the job configuration.
Corresponds to the JSON property configuration
2162 2163 2164 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2162 def configuration @configuration end |
#etag ⇒ String
[Output-only] A hash of this resource.
Corresponds to the JSON property etag
2167 2168 2169 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2167 def etag @etag end |
#id ⇒ String
[Output-only] Opaque ID field of the job
Corresponds to the JSON property id
2172 2173 2174 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2172 def id @id end |
#job_reference ⇒ Google::Apis::BigqueryV2::JobReference
[Optional] Reference describing the unique-per-user name of the job.
Corresponds to the JSON property jobReference
2177 2178 2179 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2177 def job_reference @job_reference end |
#kind ⇒ String
[Output-only] The type of the resource.
Corresponds to the JSON property kind
2182 2183 2184 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2182 def kind @kind end |
#self_link ⇒ String
[Output-only] A URL that can be used to access this resource again.
Corresponds to the JSON property selfLink
2187 2188 2189 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2187 def self_link @self_link end |
#statistics ⇒ Google::Apis::BigqueryV2::JobStatistics
[Output-only] Information about the job, including starting time and ending
time of the job.
Corresponds to the JSON property statistics
2193 2194 2195 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2193 def statistics @statistics end |
#status ⇒ Google::Apis::BigqueryV2::JobStatus
[Output-only] The status of this job. Examine this value when polling an
asynchronous job to see if the job is complete.
Corresponds to the JSON property status
2199 2200 2201 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2199 def status @status end |
#user_email ⇒ String
[Output-only] Email address of the user who ran the job.
Corresponds to the JSON property user_email
2204 2205 2206 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2204 def user_email @user_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2211 def update!(**args) @configuration = args[:configuration] if args.key?(:configuration) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @job_reference = args[:job_reference] if args.key?(:job_reference) @kind = args[:kind] if args.key?(:kind) @self_link = args[:self_link] if args.key?(:self_link) @statistics = args[:statistics] if args.key?(:statistics) @status = args[:status] if args.key?(:status) @user_email = args[:user_email] if args.key?(:user_email) end |