Class: Google::Apis::BigqueryV2::JobList::Job
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::JobList::Job
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb
Instance Attribute Summary collapse
-
#configuration ⇒ Google::Apis::BigqueryV2::JobConfiguration
[Full-projection-only] Specifies the job configuration.
-
#error_result ⇒ Google::Apis::BigqueryV2::ErrorProto
A result object that will be present only if the job has failed.
-
#id ⇒ String
Unique opaque ID of the job.
-
#job_reference ⇒ Google::Apis::BigqueryV2::JobReference
Job reference uniquely identifying the job.
-
#kind ⇒ String
The resource type.
-
#state ⇒ String
Running state of the job.
-
#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
[Full-projection-only] Describes the state of the job.
-
#user_email ⇒ String
[Full-projection-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.
Constructor Details
#initialize(**args) ⇒ Job
Returns a new instance of Job.
3698 3699 3700 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3698 def initialize(**args) update!(**args) end |
Instance Attribute Details
#configuration ⇒ Google::Apis::BigqueryV2::JobConfiguration
[Full-projection-only] Specifies the job configuration.
Corresponds to the JSON property configuration
3654 3655 3656 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3654 def configuration @configuration end |
#error_result ⇒ Google::Apis::BigqueryV2::ErrorProto
A result object that will be present only if the job has failed.
Corresponds to the JSON property errorResult
3659 3660 3661 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3659 def error_result @error_result end |
#id ⇒ String
Unique opaque ID of the job.
Corresponds to the JSON property id
3664 3665 3666 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3664 def id @id end |
#job_reference ⇒ Google::Apis::BigqueryV2::JobReference
Job reference uniquely identifying the job.
Corresponds to the JSON property jobReference
3669 3670 3671 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3669 def job_reference @job_reference end |
#kind ⇒ String
The resource type.
Corresponds to the JSON property kind
3674 3675 3676 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3674 def kind @kind end |
#state ⇒ String
Running state of the job. When the state is DONE, errorResult can be checked
to determine whether the job succeeded or failed.
Corresponds to the JSON property state
3680 3681 3682 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3680 def state @state 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
3686 3687 3688 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3686 def statistics @statistics end |
#status ⇒ Google::Apis::BigqueryV2::JobStatus
[Full-projection-only] Describes the state of the job.
Corresponds to the JSON property status
3691 3692 3693 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3691 def status @status end |
#user_email ⇒ String
[Full-projection-only] Email address of the user who ran the job.
Corresponds to the JSON property user_email
3696 3697 3698 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3696 def user_email @user_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3703 def update!(**args) @configuration = args[:configuration] if args.key?(:configuration) @error_result = args[:error_result] if args.key?(:error_result) @id = args[:id] if args.key?(:id) @job_reference = args[:job_reference] if args.key?(:job_reference) @kind = args[:kind] if args.key?(:kind) @state = args[:state] if args.key?(:state) @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 |