class Google::Apis::NotebooksV1::Execution

The definition of a single executed notebook.

Attributes

create_time[RW]

Output only. Time the Execution was instantiated. Corresponds to the JSON property `createTime` @return [String]

description[RW]

A brief description of this execution. Corresponds to the JSON property `description` @return [String]

display_name[RW]

Output only. Name used for UI purposes. Name can only contain alphanumeric characters and underscores '_'. Corresponds to the JSON property `displayName` @return [String]

execution_template[RW]

The description a notebook execution workload. Corresponds to the JSON property `executionTemplate` @return [Google::Apis::NotebooksV1::ExecutionTemplate]

job_uri[RW]

Output only. The URI of the external job used to execute the notebook. Corresponds to the JSON property `jobUri` @return [String]

name[RW]

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[RW]

Output notebook file generated by this execution Corresponds to the JSON property `outputNotebookFile` @return [String]

state[RW]

Output only. State of the underlying AI Platform job. Corresponds to the JSON property `state` @return [String]

update_time[RW]

Output only. Time the Execution was last updated. Corresponds to the JSON property `updateTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/notebooks_v1/classes.rb, line 467
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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