Class: Google::Apis::TpuV2alpha1::QueuedResourceState
- Inherits:
-
Object
- Object
- Google::Apis::TpuV2alpha1::QueuedResourceState
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/tpu_v2alpha1/classes.rb,
lib/google/apis/tpu_v2alpha1/representations.rb,
lib/google/apis/tpu_v2alpha1/representations.rb
Overview
QueuedResourceState defines the details of the QueuedResource request.
Instance Attribute Summary collapse
-
#accepted_data ⇒ Google::Apis::TpuV2alpha1::AcceptedData
Further data for the accepted state.
-
#active_data ⇒ Google::Apis::TpuV2alpha1::ActiveData
Further data for the active state.
-
#creating_data ⇒ Google::Apis::TpuV2alpha1::CreatingData
Further data for the creating state.
-
#deleting_data ⇒ Google::Apis::TpuV2alpha1::DeletingData
Further data for the deleting state.
-
#failed_data ⇒ Google::Apis::TpuV2alpha1::FailedData
Further data for the failed state.
-
#provisioning_data ⇒ Google::Apis::TpuV2alpha1::ProvisioningData
Further data for the provisioning state.
-
#state ⇒ String
State of the QueuedResource request.
-
#suspended_data ⇒ Google::Apis::TpuV2alpha1::SuspendedData
Further data for the suspended state.
-
#suspending_data ⇒ Google::Apis::TpuV2alpha1::SuspendingData
Further data for the suspending state.
Instance Method Summary collapse
-
#initialize(**args) ⇒ QueuedResourceState
constructor
A new instance of QueuedResourceState.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ QueuedResourceState
Returns a new instance of QueuedResourceState.
1189 1190 1191 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1189 def initialize(**args) update!(**args) end |
Instance Attribute Details
#accepted_data ⇒ Google::Apis::TpuV2alpha1::AcceptedData
Further data for the accepted state.
Corresponds to the JSON property acceptedData
1147 1148 1149 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1147 def accepted_data @accepted_data end |
#active_data ⇒ Google::Apis::TpuV2alpha1::ActiveData
Further data for the active state.
Corresponds to the JSON property activeData
1152 1153 1154 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1152 def active_data @active_data end |
#creating_data ⇒ Google::Apis::TpuV2alpha1::CreatingData
Further data for the creating state.
Corresponds to the JSON property creatingData
1157 1158 1159 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1157 def creating_data @creating_data end |
#deleting_data ⇒ Google::Apis::TpuV2alpha1::DeletingData
Further data for the deleting state.
Corresponds to the JSON property deletingData
1162 1163 1164 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1162 def deleting_data @deleting_data end |
#failed_data ⇒ Google::Apis::TpuV2alpha1::FailedData
Further data for the failed state.
Corresponds to the JSON property failedData
1167 1168 1169 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1167 def failed_data @failed_data end |
#provisioning_data ⇒ Google::Apis::TpuV2alpha1::ProvisioningData
Further data for the provisioning state.
Corresponds to the JSON property provisioningData
1172 1173 1174 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1172 def provisioning_data @provisioning_data end |
#state ⇒ String
State of the QueuedResource request.
Corresponds to the JSON property state
1177 1178 1179 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1177 def state @state end |
#suspended_data ⇒ Google::Apis::TpuV2alpha1::SuspendedData
Further data for the suspended state.
Corresponds to the JSON property suspendedData
1182 1183 1184 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1182 def suspended_data @suspended_data end |
#suspending_data ⇒ Google::Apis::TpuV2alpha1::SuspendingData
Further data for the suspending state.
Corresponds to the JSON property suspendingData
1187 1188 1189 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1187 def suspending_data @suspending_data end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1194 def update!(**args) @accepted_data = args[:accepted_data] if args.key?(:accepted_data) @active_data = args[:active_data] if args.key?(:active_data) @creating_data = args[:creating_data] if args.key?(:creating_data) @deleting_data = args[:deleting_data] if args.key?(:deleting_data) @failed_data = args[:failed_data] if args.key?(:failed_data) @provisioning_data = args[:provisioning_data] if args.key?(:provisioning_data) @state = args[:state] if args.key?(:state) @suspended_data = args[:suspended_data] if args.key?(:suspended_data) @suspending_data = args[:suspending_data] if args.key?(:suspending_data) end |