class Google::Apis::NotebooksV1::Execution
The definition of a single executed notebook.
Attributes
Output only. Time the Execution
was instantiated. Corresponds to the JSON property `createTime` @return [String]
A brief description of this execution. Corresponds to the JSON property `description` @return [String]
Output only. Name used for UI purposes. Name can only contain alphanumeric characters and underscores '_'. Corresponds to the JSON property `displayName` @return [String]
The description a notebook execution workload. Corresponds to the JSON property `executionTemplate` @return [Google::Apis::NotebooksV1::ExecutionTemplate]
Output only. The URI of the external job used to execute the notebook. Corresponds to the JSON property `jobUri` @return [String]
Output only. The resource name of the execute. Format: `projects/`project_id`/ locations/`location`/execution/`execution_id` Corresponds to the JSON property `name` @return [String]
Output notebook file generated by this execution Corresponds to the JSON property `outputNotebookFile` @return [String]
Output only. State of the underlying AI Platform job. Corresponds to the JSON property `state` @return [String]
Output only. Time the Execution
was last updated. Corresponds to the JSON property `updateTime` @return [String]
Public Class Methods
# File lib/google/apis/notebooks_v1/classes.rb, line 467 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/notebooks_v1/classes.rb, line 472 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