Class: Google::Apis::BigqueryV2::Job

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Job

Returns a new instance of Job.



2928
2929
2930
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2928

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#configurationGoogle::Apis::BigqueryV2::JobConfiguration

[Required] Describes the job configuration. Corresponds to the JSON property configuration



2884
2885
2886
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2884

def configuration
  @configuration
end

#etagString

[Output-only] A hash of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


2889
2890
2891
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2889

def etag
  @etag
end

#idString

[Output-only] Opaque ID field of the job Corresponds to the JSON property id

Returns:

  • (String)


2894
2895
2896
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2894

def id
  @id
end

#job_referenceGoogle::Apis::BigqueryV2::JobReference

[Optional] Reference describing the unique-per-user name of the job. Corresponds to the JSON property jobReference



2899
2900
2901
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2899

def job_reference
  @job_reference
end

#kindString

[Output-only] The type of the resource. Corresponds to the JSON property kind

Returns:

  • (String)


2904
2905
2906
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2904

def kind
  @kind
end

[Output-only] A URL that can be used to access this resource again. Corresponds to the JSON property selfLink

Returns:

  • (String)


2909
2910
2911
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2909

def self_link
  @self_link
end

#statisticsGoogle::Apis::BigqueryV2::JobStatistics

[Output-only] Information about the job, including starting time and ending time of the job. Corresponds to the JSON property statistics



2915
2916
2917
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2915

def statistics
  @statistics
end

#statusGoogle::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



2921
2922
2923
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2921

def status
  @status
end

#user_emailString

[Output-only] Email address of the user who ran the job. Corresponds to the JSON property user_email

Returns:

  • (String)


2926
2927
2928
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2926

def user_email
  @user_email
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2933

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