Class: Google::Cloud::EdgeContainer::V1::Cluster::MaintenanceEvent
- Inherits:
-
Object
- Object
- Google::Cloud::EdgeContainer::V1::Cluster::MaintenanceEvent
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/edgecontainer/v1/resources.rb
Overview
A Maintenance Event is an operation that could cause temporary disruptions to the cluster workloads, including Google-driven or user-initiated cluster upgrades, user-initiated cluster configuration changes that require restarting nodes, etc.
Defined Under Namespace
Modules: Schedule, State, Type
Instance Attribute Summary collapse
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#end_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#operation ⇒ ::String
readonly
Output only.
-
#schedule ⇒ ::Google::Cloud::EdgeContainer::V1::Cluster::MaintenanceEvent::Schedule
readonly
Output only.
-
#start_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#state ⇒ ::Google::Cloud::EdgeContainer::V1::Cluster::MaintenanceEvent::State
readonly
Output only.
-
#target_version ⇒ ::String
readonly
Output only.
-
#type ⇒ ::Google::Cloud::EdgeContainer::V1::Cluster::MaintenanceEvent::Type
readonly
Output only.
-
#update_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#uuid ⇒ ::String
readonly
Output only.
Instance Attribute Details
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. The time when the maintenance event request was created.
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'proto_docs/google/cloud/edgecontainer/v1/resources.rb', line 268 class MaintenanceEvent include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates the maintenance event type. module Type # Unspecified. TYPE_UNSPECIFIED = 0 # Upgrade initiated by users. USER_INITIATED_UPGRADE = 1 # Upgrade driven by Google. GOOGLE_DRIVEN_UPGRADE = 2 end # Indicates when the maintenance event should be performed. module Schedule # Unspecified. SCHEDULE_UNSPECIFIED = 0 # Immediately after receiving the request. IMMEDIATELY = 1 end # Indicates the maintenance event state. module State # Unspecified. STATE_UNSPECIFIED = 0 # The maintenance event is ongoing. The cluster might be unusable. RECONCILING = 1 # The maintenance event succeeded. SUCCEEDED = 2 # The maintenance event failed. FAILED = 3 end end |
#end_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. The time when the maintenance event ended, either successfully or not. If the maintenance event is split into multiple maintenance windows, end_time is only updated when the whole flow ends.
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'proto_docs/google/cloud/edgecontainer/v1/resources.rb', line 268 class MaintenanceEvent include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates the maintenance event type. module Type # Unspecified. TYPE_UNSPECIFIED = 0 # Upgrade initiated by users. USER_INITIATED_UPGRADE = 1 # Upgrade driven by Google. GOOGLE_DRIVEN_UPGRADE = 2 end # Indicates when the maintenance event should be performed. module Schedule # Unspecified. SCHEDULE_UNSPECIFIED = 0 # Immediately after receiving the request. IMMEDIATELY = 1 end # Indicates the maintenance event state. module State # Unspecified. STATE_UNSPECIFIED = 0 # The maintenance event is ongoing. The cluster might be unusable. RECONCILING = 1 # The maintenance event succeeded. SUCCEEDED = 2 # The maintenance event failed. FAILED = 3 end end |
#operation ⇒ ::String (readonly)
Returns Output only. The operation for running the maintenance event. Specified in the format projects//locations//operations/*. If the maintenance event is split into multiple operations (e.g. due to maintenance windows), the latest one is recorded.
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'proto_docs/google/cloud/edgecontainer/v1/resources.rb', line 268 class MaintenanceEvent include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates the maintenance event type. module Type # Unspecified. TYPE_UNSPECIFIED = 0 # Upgrade initiated by users. USER_INITIATED_UPGRADE = 1 # Upgrade driven by Google. GOOGLE_DRIVEN_UPGRADE = 2 end # Indicates when the maintenance event should be performed. module Schedule # Unspecified. SCHEDULE_UNSPECIFIED = 0 # Immediately after receiving the request. IMMEDIATELY = 1 end # Indicates the maintenance event state. module State # Unspecified. STATE_UNSPECIFIED = 0 # The maintenance event is ongoing. The cluster might be unusable. RECONCILING = 1 # The maintenance event succeeded. SUCCEEDED = 2 # The maintenance event failed. FAILED = 3 end end |
#schedule ⇒ ::Google::Cloud::EdgeContainer::V1::Cluster::MaintenanceEvent::Schedule (readonly)
Returns Output only. The schedule of the maintenance event.
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'proto_docs/google/cloud/edgecontainer/v1/resources.rb', line 268 class MaintenanceEvent include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates the maintenance event type. module Type # Unspecified. TYPE_UNSPECIFIED = 0 # Upgrade initiated by users. USER_INITIATED_UPGRADE = 1 # Upgrade driven by Google. GOOGLE_DRIVEN_UPGRADE = 2 end # Indicates when the maintenance event should be performed. module Schedule # Unspecified. SCHEDULE_UNSPECIFIED = 0 # Immediately after receiving the request. IMMEDIATELY = 1 end # Indicates the maintenance event state. module State # Unspecified. STATE_UNSPECIFIED = 0 # The maintenance event is ongoing. The cluster might be unusable. RECONCILING = 1 # The maintenance event succeeded. SUCCEEDED = 2 # The maintenance event failed. FAILED = 3 end end |
#start_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. The time when the maintenance event started.
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'proto_docs/google/cloud/edgecontainer/v1/resources.rb', line 268 class MaintenanceEvent include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates the maintenance event type. module Type # Unspecified. TYPE_UNSPECIFIED = 0 # Upgrade initiated by users. USER_INITIATED_UPGRADE = 1 # Upgrade driven by Google. GOOGLE_DRIVEN_UPGRADE = 2 end # Indicates when the maintenance event should be performed. module Schedule # Unspecified. SCHEDULE_UNSPECIFIED = 0 # Immediately after receiving the request. IMMEDIATELY = 1 end # Indicates the maintenance event state. module State # Unspecified. STATE_UNSPECIFIED = 0 # The maintenance event is ongoing. The cluster might be unusable. RECONCILING = 1 # The maintenance event succeeded. SUCCEEDED = 2 # The maintenance event failed. FAILED = 3 end end |
#state ⇒ ::Google::Cloud::EdgeContainer::V1::Cluster::MaintenanceEvent::State (readonly)
Returns Output only. The state of the maintenance event.
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'proto_docs/google/cloud/edgecontainer/v1/resources.rb', line 268 class MaintenanceEvent include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates the maintenance event type. module Type # Unspecified. TYPE_UNSPECIFIED = 0 # Upgrade initiated by users. USER_INITIATED_UPGRADE = 1 # Upgrade driven by Google. GOOGLE_DRIVEN_UPGRADE = 2 end # Indicates when the maintenance event should be performed. module Schedule # Unspecified. SCHEDULE_UNSPECIFIED = 0 # Immediately after receiving the request. IMMEDIATELY = 1 end # Indicates the maintenance event state. module State # Unspecified. STATE_UNSPECIFIED = 0 # The maintenance event is ongoing. The cluster might be unusable. RECONCILING = 1 # The maintenance event succeeded. SUCCEEDED = 2 # The maintenance event failed. FAILED = 3 end end |
#target_version ⇒ ::String (readonly)
Returns Output only. The target version of the cluster.
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'proto_docs/google/cloud/edgecontainer/v1/resources.rb', line 268 class MaintenanceEvent include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates the maintenance event type. module Type # Unspecified. TYPE_UNSPECIFIED = 0 # Upgrade initiated by users. USER_INITIATED_UPGRADE = 1 # Upgrade driven by Google. GOOGLE_DRIVEN_UPGRADE = 2 end # Indicates when the maintenance event should be performed. module Schedule # Unspecified. SCHEDULE_UNSPECIFIED = 0 # Immediately after receiving the request. IMMEDIATELY = 1 end # Indicates the maintenance event state. module State # Unspecified. STATE_UNSPECIFIED = 0 # The maintenance event is ongoing. The cluster might be unusable. RECONCILING = 1 # The maintenance event succeeded. SUCCEEDED = 2 # The maintenance event failed. FAILED = 3 end end |
#type ⇒ ::Google::Cloud::EdgeContainer::V1::Cluster::MaintenanceEvent::Type (readonly)
Returns Output only. The type of the maintenance event.
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'proto_docs/google/cloud/edgecontainer/v1/resources.rb', line 268 class MaintenanceEvent include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates the maintenance event type. module Type # Unspecified. TYPE_UNSPECIFIED = 0 # Upgrade initiated by users. USER_INITIATED_UPGRADE = 1 # Upgrade driven by Google. GOOGLE_DRIVEN_UPGRADE = 2 end # Indicates when the maintenance event should be performed. module Schedule # Unspecified. SCHEDULE_UNSPECIFIED = 0 # Immediately after receiving the request. IMMEDIATELY = 1 end # Indicates the maintenance event state. module State # Unspecified. STATE_UNSPECIFIED = 0 # The maintenance event is ongoing. The cluster might be unusable. RECONCILING = 1 # The maintenance event succeeded. SUCCEEDED = 2 # The maintenance event failed. FAILED = 3 end end |
#update_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. The time when the maintenance event message was updated.
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'proto_docs/google/cloud/edgecontainer/v1/resources.rb', line 268 class MaintenanceEvent include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates the maintenance event type. module Type # Unspecified. TYPE_UNSPECIFIED = 0 # Upgrade initiated by users. USER_INITIATED_UPGRADE = 1 # Upgrade driven by Google. GOOGLE_DRIVEN_UPGRADE = 2 end # Indicates when the maintenance event should be performed. module Schedule # Unspecified. SCHEDULE_UNSPECIFIED = 0 # Immediately after receiving the request. IMMEDIATELY = 1 end # Indicates the maintenance event state. module State # Unspecified. STATE_UNSPECIFIED = 0 # The maintenance event is ongoing. The cluster might be unusable. RECONCILING = 1 # The maintenance event succeeded. SUCCEEDED = 2 # The maintenance event failed. FAILED = 3 end end |
#uuid ⇒ ::String (readonly)
Returns Output only. UUID of the maintenance event.
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'proto_docs/google/cloud/edgecontainer/v1/resources.rb', line 268 class MaintenanceEvent include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates the maintenance event type. module Type # Unspecified. TYPE_UNSPECIFIED = 0 # Upgrade initiated by users. USER_INITIATED_UPGRADE = 1 # Upgrade driven by Google. GOOGLE_DRIVEN_UPGRADE = 2 end # Indicates when the maintenance event should be performed. module Schedule # Unspecified. SCHEDULE_UNSPECIFIED = 0 # Immediately after receiving the request. IMMEDIATELY = 1 end # Indicates the maintenance event state. module State # Unspecified. STATE_UNSPECIFIED = 0 # The maintenance event is ongoing. The cluster might be unusable. RECONCILING = 1 # The maintenance event succeeded. SUCCEEDED = 2 # The maintenance event failed. FAILED = 3 end end |