Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReportExecutionEventRequest

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

Request message for NotebookInternalService.ReportExecutionEvent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReportExecutionEventRequest

Returns a new instance of GoogleCloudAiplatformV1beta1ReportExecutionEventRequest.



16257
16258
16259
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16257

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

Instance Attribute Details

#event_typeString

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

Returns:

  • (String)


16249
16250
16251
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16249

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)


16255
16256
16257
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16255

def vm_token
  @vm_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16262
16263
16264
16265
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16262

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