Class: Google::Apis::NotebooksV1::Execution
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::Execution
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb more...
Overview
The definition of a single executed notebook.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
A brief description of this execution.
-
#display_name ⇒ String
Output only.
-
#execution_template ⇒ Google::Apis::NotebooksV1::ExecutionTemplate
The description a notebook execution workload.
-
#job_uri ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#output_notebook_file ⇒ String
Output notebook file generated by this execution Corresponds to the JSON property
outputNotebookFile
. -
#state ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Execution
constructor
A new instance of Execution.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Execution
Returns a new instance of Execution.
622 623 624 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 622 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Time the Execution was instantiated.
Corresponds to the JSON property createTime
578 579 580 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 578 def create_time @create_time end |
#description ⇒ String
A brief description of this execution.
Corresponds to the JSON property description
583 584 585 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 583 def description @description end |
#display_name ⇒ String
Output only. Name used for UI purposes. Name can only contain alphanumeric
characters and underscores '_'.
Corresponds to the JSON property displayName
589 590 591 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 589 def display_name @display_name end |
#execution_template ⇒ Google::Apis::NotebooksV1::ExecutionTemplate
The description a notebook execution workload.
Corresponds to the JSON property executionTemplate
594 595 596 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 594 def execution_template @execution_template end |
#job_uri ⇒ String
Output only. The URI of the external job used to execute the notebook.
Corresponds to the JSON property jobUri
599 600 601 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 599 def job_uri @job_uri end |
#name ⇒ String
Output only. The resource name of the execute. Format: projects/
project_id/
locations/
location/executions/
execution_id`
Corresponds to the JSON property
name`
605 606 607 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 605 def name @name end |
#output_notebook_file ⇒ String
Output notebook file generated by this execution
Corresponds to the JSON property outputNotebookFile
610 611 612 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 610 def output_notebook_file @output_notebook_file end |
#state ⇒ String
Output only. State of the underlying AI Platform job.
Corresponds to the JSON property state
615 616 617 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 615 def state @state end |
#update_time ⇒ String
Output only. Time the Execution was last updated.
Corresponds to the JSON property updateTime
620 621 622 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 620 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
627 628 629 630 631 632 633 634 635 636 637 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 627 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @execution_template = args[:execution_template] if args.key?(:execution_template) @job_uri = args[:job_uri] if args.key?(:job_uri) @name = args[:name] if args.key?(:name) @output_notebook_file = args[:output_notebook_file] if args.key?(:output_notebook_file) @state = args[:state] if args.key?(:state) @update_time = args[:update_time] if args.key?(:update_time) end |