Class: Google::Apis::NotebooksV1::Execution

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Execution

Returns a new instance of Execution.

[View source]

622
623
624
# File 'lib/google/apis/notebooks_v1/classes.rb', line 622

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

Instance Attribute Details

#create_timeString

Output only. Time the Execution was instantiated. Corresponds to the JSON property createTime

Returns:

  • (String)

578
579
580
# File 'lib/google/apis/notebooks_v1/classes.rb', line 578

def create_time
  @create_time
end

#descriptionString

A brief description of this execution. Corresponds to the JSON property description

Returns:

  • (String)

583
584
585
# File 'lib/google/apis/notebooks_v1/classes.rb', line 583

def description
  @description
end

#display_nameString

Output only. Name used for UI purposes. Name can only contain alphanumeric characters and underscores '_'. Corresponds to the JSON property displayName

Returns:

  • (String)

589
590
591
# File 'lib/google/apis/notebooks_v1/classes.rb', line 589

def display_name
  @display_name
end

#execution_templateGoogle::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_uriString

Output only. The URI of the external job used to execute the notebook. Corresponds to the JSON property jobUri

Returns:

  • (String)

599
600
601
# File 'lib/google/apis/notebooks_v1/classes.rb', line 599

def job_uri
  @job_uri
end

#nameString

Output only. The resource name of the execute. Format: projects/project_id/ locations/location/executions/execution_id` Corresponds to the JSON propertyname`

Returns:

  • (String)

605
606
607
# File 'lib/google/apis/notebooks_v1/classes.rb', line 605

def name
  @name
end

#output_notebook_fileString

Output notebook file generated by this execution Corresponds to the JSON property outputNotebookFile

Returns:

  • (String)

610
611
612
# File 'lib/google/apis/notebooks_v1/classes.rb', line 610

def output_notebook_file
  @output_notebook_file
end

#stateString

Output only. State of the underlying AI Platform job. Corresponds to the JSON property state

Returns:

  • (String)

615
616
617
# File 'lib/google/apis/notebooks_v1/classes.rb', line 615

def state
  @state
end

#update_timeString

Output only. Time the Execution was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)

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

[View source]

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