Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest
- 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
LINT.IfChange(report_event_message_types) Request message for NotebookInternalService.ReportRuntimeEvent.
Instance Attribute Summary collapse
-
#event_details ⇒ Hash<String,String>
Optional.
-
#event_type ⇒ String
Required.
-
#vm_token ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest
constructor
A new instance of GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest
Returns a new instance of GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest.
16507 16508 16509 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16507 def initialize(**args) update!(**args) end |
Instance Attribute Details
#event_details ⇒ Hash<String,String>
Optional. The details of the request for debug.
Corresponds to the JSON property eventDetails
16494 16495 16496 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16494 def event_details @event_details end |
#event_type ⇒ String
Required. The type of the event.
Corresponds to the JSON property eventType
16499 16500 16501 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16499 def event_type @event_type end |
#vm_token ⇒ String
Required. The VM identity token (a JWT) for authenticating the VM. https://
cloud.google.com/compute/docs/instances/verifying-instance-identity
Corresponds to the JSON property vmToken
16505 16506 16507 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16505 def vm_token @vm_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16512 16513 16514 16515 16516 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16512 def update!(**args) @event_details = args[:event_details] if args.key?(:event_details) @event_type = args[:event_type] if args.key?(:event_type) @vm_token = args[:vm_token] if args.key?(:vm_token) end |