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
Request message for NotebookInternalService.ReportRuntimeEvent.
Instance Attribute Summary collapse
-
#event_details ⇒ Hash<String,String>
Optional.
-
#event_type ⇒ String
Required.
-
#internal_os_service_state_instance ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1InternalOsServiceStateInstance>
The details of the internal os service states.
-
#internal_os_service_state_instances ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1InternalOsServiceStateInstance>
Optional.
-
#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.
23647 23648 23649 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23647 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
23624 23625 23626 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23624 def event_details @event_details end |
#event_type ⇒ String
Required. The type of the event.
Corresponds to the JSON property eventType
23629 23630 23631 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23629 def event_type @event_type end |
#internal_os_service_state_instance ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1InternalOsServiceStateInstance>
The details of the internal os service states.
Corresponds to the JSON property internalOsServiceStateInstance
23634 23635 23636 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23634 def internal_os_service_state_instance @internal_os_service_state_instance end |
#internal_os_service_state_instances ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1InternalOsServiceStateInstance>
Optional. The details of the internal os service states.
Corresponds to the JSON property internalOsServiceStateInstances
23639 23640 23641 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23639 def internal_os_service_state_instances @internal_os_service_state_instances 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
23645 23646 23647 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23645 def vm_token @vm_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23652 23653 23654 23655 23656 23657 23658 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23652 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 |