Class: Google::Cloud::ServiceHealth::V1::OrganizationEvent

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/servicehealth/v1/event_resources.rb

Overview

Represents service health events that may affect Google Cloud products used across the organization. It is a read-only view and does not allow any modifications.

Defined Under Namespace

Modules: DetailedCategory, DetailedState, EventCategory, State

Instance Attribute Summary collapse

Instance Attribute Details

#category::Google::Cloud::ServiceHealth::V1::OrganizationEvent::EventCategory (readonly)

Returns Output only. The category of the event.

Returns:



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#description::String (readonly)

Returns Output only. Free-form, human-readable description.

Returns:

  • (::String)

    Output only. Free-form, human-readable description.



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#detailed_category::Google::Cloud::ServiceHealth::V1::OrganizationEvent::DetailedCategory (readonly)

Returns Output only. The detailed category of the event.

Returns:



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#detailed_state::Google::Cloud::ServiceHealth::V1::OrganizationEvent::DetailedState (readonly)

Returns Output only. The current detailed state of the incident.

Returns:



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#end_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The end time of the event, if applicable.

Returns:



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#event_impacts::Array<::Google::Cloud::ServiceHealth::V1::EventImpact> (readonly)

Returns Output only. Represents the Google Cloud products and locations impacted by the event.

Returns:



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#name::String (readonly)

Returns Output only. Identifier. Name of the event. Unique name of the event in this scope including organization ID and location using the form organizations/{organization_id}/locations/{location}/organizationEvents/{event_id}.

organization_id - see Getting your organization resource ID.
location - The location to get the service health events from.
event_id - Organization event ID to retrieve.

Returns:

  • (::String)

    Output only. Identifier. Name of the event. Unique name of the event in this scope including organization ID and location using the form organizations/{organization_id}/locations/{location}/organizationEvents/{event_id}.

    organization_id - see Getting your organization resource ID.
    location - The location to get the service health events from.
    event_id - Organization event ID to retrieve.



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#next_update_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. Incident-only field. The time when the next update can be expected.

Returns:



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#parent_event::String (readonly)

Returns Output only. When detailed_state=MERGED, parent_event contains the name of the parent event. All further updates will be published to the parent event.

Returns:

  • (::String)

    Output only. When detailed_state=MERGED, parent_event contains the name of the parent event. All further updates will be published to the parent event.



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#start_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The start time of the event, if applicable.

Returns:



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#state::Google::Cloud::ServiceHealth::V1::OrganizationEvent::State (readonly)

Returns Output only. The current state of the event.

Returns:



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#title::String (readonly)

Returns Output only. Brief description for the event.

Returns:

  • (::String)

    Output only. Brief description for the event.



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#update_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The time the update was posted.

Returns:



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end

#updates::Array<::Google::Cloud::ServiceHealth::V1::EventUpdate> (readonly)

Returns Output only. Incident-only field. Event updates are correspondence from Google.

Returns:



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'proto_docs/google/cloud/servicehealth/v1/event_resources.rb', line 242

class OrganizationEvent
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The category of the event. This enum lists all possible categories of
  # event.
  module EventCategory
    # Unspecified category.
    EVENT_CATEGORY_UNSPECIFIED = 0

    # Event category for service outage or degradation.
    INCIDENT = 2
  end

  # The detailed category of an event. Contains all possible states for all
  # event categories.
  module DetailedCategory
    # Unspecified detailed category.
    DETAILED_CATEGORY_UNSPECIFIED = 0

    # Indicates an event with category INCIDENT has a confirmed impact to at
    # least one Google Cloud product.
    CONFIRMED_INCIDENT = 1

    # Indicates an event with category INCIDENT is under investigation to
    # determine if it has a confirmed impact on any Google Cloud products.
    EMERGING_INCIDENT = 2
  end

  # The state of the organization event. This enum lists all possible states of
  # event.
  module State
    # Unspecified state.
    STATE_UNSPECIFIED = 0

    # Event is actively affecting a Google Cloud product and will continue to
    # receive updates.
    ACTIVE = 1

    # Event is no longer affecting the Google Cloud product or has been merged
    # with another event.
    CLOSED = 2
  end

  # The detailed state of the incident. This enum lists all possible detailed
  # states of an incident.
  module DetailedState
    # Unspecified detail state.
    DETAILED_STATE_UNSPECIFIED = 0

    # Google engineers are actively investigating the incident to determine the
    # impact.
    EMERGING = 1

    # The incident is confirmed and impacting at least one Google Cloud
    # product. Ongoing status updates will be provided until it is resolved.
    CONFIRMED = 2

    # The incident is no longer affecting any Google Cloud product, and there
    # will be no further updates.
    RESOLVED = 3

    # The incident was merged into a parent event. All further updates will be
    # published to the parent only. The `parent_event` contains the name of the
    # parent.
    MERGED = 4

    # The incident was automatically closed because of the following reasons:
    #
    #  * The impact of the incident could not be confirmed.
    #  * The incident was intermittent or resolved itself.
    #
    #  The incident does not have a resolution because no action or
    #  investigation happened. If it is intermittent, the incident may reopen.
    AUTO_CLOSED = 9

    # Upon investigation, Google engineers concluded that the incident is not
    # affecting a Google Cloud product. This state can change if the incident
    # is reviewed again.
    FALSE_POSITIVE = 10
  end
end