Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ScheduleRunResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

Status of a scheduled run.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ScheduleRunResponse

Returns a new instance of GoogleCloudAiplatformV1ScheduleRunResponse.



21339
21340
21341
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21339

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

Instance Attribute Details

#run_responseString

The response of the scheduled run. Corresponds to the JSON property runResponse

Returns:

  • (String)


21332
21333
21334
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21332

def run_response
  @run_response
end

#scheduled_run_timeString

The scheduled run time based on the user-specified schedule. Corresponds to the JSON property scheduledRunTime

Returns:

  • (String)


21337
21338
21339
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21337

def scheduled_run_time
  @scheduled_run_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21344
21345
21346
21347
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21344

def update!(**args)
  @run_response = args[:run_response] if args.key?(:run_response)
  @scheduled_run_time = args[:scheduled_run_time] if args.key?(:scheduled_run_time)
end