Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ScheduleRunResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ScheduleRunResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Status of a scheduled run.
Instance Attribute Summary collapse
-
#run_response ⇒ String
The response of the scheduled run.
-
#scheduled_run_time ⇒ String
The scheduled run time based on the user-specified schedule.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ScheduleRunResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1ScheduleRunResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ScheduleRunResponse
Returns a new instance of GoogleCloudAiplatformV1beta1ScheduleRunResponse.
28544 28545 28546 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28544 def initialize(**args) update!(**args) end |
Instance Attribute Details
#run_response ⇒ String
The response of the scheduled run.
Corresponds to the JSON property runResponse
28537 28538 28539 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28537 def run_response @run_response end |
#scheduled_run_time ⇒ String
The scheduled run time based on the user-specified schedule.
Corresponds to the JSON property scheduledRunTime
28542 28543 28544 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28542 def scheduled_run_time @scheduled_run_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28549 28550 28551 28552 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 28549 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 |