Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1InternalOsServiceStateInstance
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1InternalOsServiceStateInstance
- 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 [InternalOsServiceStateInstance].
Instance Attribute Summary collapse
-
#service_name ⇒ String
Required.
-
#service_state ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1InternalOsServiceStateInstance
constructor
A new instance of GoogleCloudAiplatformV1beta1InternalOsServiceStateInstance.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1InternalOsServiceStateInstance
Returns a new instance of GoogleCloudAiplatformV1beta1InternalOsServiceStateInstance.
15100 15101 15102 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15100 def initialize(**args) update!(**args) end |
Instance Attribute Details
#service_name ⇒ String
Required. internal service name.
Corresponds to the JSON property serviceName
15093 15094 15095 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15093 def service_name @service_name end |
#service_state ⇒ String
Required. internal service state.
Corresponds to the JSON property serviceState
15098 15099 15100 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15098 def service_state @service_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15105 15106 15107 15108 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15105 def update!(**args) @service_name = args[:service_name] if args.key?(:service_name) @service_state = args[:service_state] if args.key?(:service_state) end |