Class: Google::Apis::BigqueryV2::JobReference
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::JobReference
- 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
Overview
A job reference is a fully qualified identifier for referring to a job.
Instance Attribute Summary collapse
-
#job_id ⇒ String
Required.
-
#location ⇒ String
Optional.
-
#project_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobReference
constructor
A new instance of JobReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ JobReference
Returns a new instance of JobReference.
5373 5374 5375 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5373 def initialize(**args) update!(**args) end |
Instance Attribute Details
#job_id ⇒ String
Required. 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.
Corresponds to the JSON property jobId
5359 5360 5361 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5359 def job_id @job_id end |
#location ⇒ String
Optional. The geographic location of the job. The default value is US. For
more information about BigQuery locations, see: https://cloud.google.com/
bigquery/docs/locations
Corresponds to the JSON property location
5366 5367 5368 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5366 def location @location end |
#project_id ⇒ String
Required. The ID of the project containing this job.
Corresponds to the JSON property projectId
5371 5372 5373 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5371 def project_id @project_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5378 5379 5380 5381 5382 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5378 def update!(**args) @job_id = args[:job_id] if args.key?(:job_id) @location = args[:location] if args.key?(:location) @project_id = args[:project_id] if args.key?(:project_id) end |