Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest

Returns a new instance of GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest.



15044
15045
15046
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15044

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

Instance Attribute Details

#event_detailsHash<String,String>

Optional. The details of the request for debug. Corresponds to the JSON property eventDetails

Returns:

  • (Hash<String,String>)


15031
15032
15033
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15031

def event_details
  @event_details
end

#event_typeString

Required. The type of the event. Corresponds to the JSON property eventType

Returns:

  • (String)


15036
15037
15038
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15036

def event_type
  @event_type
end

#vm_tokenString

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

Returns:

  • (String)


15042
15043
15044
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15042

def vm_token
  @vm_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



15049
15050
15051
15052
15053
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15049

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