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

Request message for NotebookInternalService.ReportRuntimeEvent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest

Returns a new instance of GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest.



23182
23183
23184
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23182

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>)


23159
23160
23161
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23159

def event_details
  @event_details
end

#event_typeString

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

Returns:

  • (String)


23164
23165
23166
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23164

def event_type
  @event_type
end

#internal_os_service_state_instanceArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1InternalOsServiceStateInstance>

The details of the internal os service states. Corresponds to the JSON property internalOsServiceStateInstance



23169
23170
23171
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23169

def internal_os_service_state_instance
  @internal_os_service_state_instance
end

#internal_os_service_state_instancesArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1InternalOsServiceStateInstance>

Optional. The details of the internal os service states. Corresponds to the JSON property internalOsServiceStateInstances



23174
23175
23176
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23174

def internal_os_service_state_instances
  @internal_os_service_state_instances
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)


23180
23181
23182
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23180

def vm_token
  @vm_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



23187
23188
23189
23190
23191
23192
23193
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23187

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