Class: Google::Apis::ComputeAlpha::InterconnectOutageNotification
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InterconnectOutageNotification
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Description of a planned outage on this Interconnect.
Instance Attribute Summary collapse
-
#affected_circuits ⇒ Array<String>
If issue_type is IT_PARTIAL_OUTAGE, a list of the Google-side circuit IDs that will be affected.
-
#description ⇒ String
A description about the purpose of the outage.
-
#end_time ⇒ Fixnum
Scheduled end time for the outage (milliseconds since Unix epoch).
-
#issue_type ⇒ String
Form this outage is expected to take, which can take one of the following values: - OUTAGE: The Interconnect may be completely out of service for some or all of the specified window.
-
#name ⇒ String
Unique identifier for this outage notification.
-
#source ⇒ String
The party that generated this notification, which can take the following value: - GOOGLE: this notification as generated by Google.
-
#start_time ⇒ Fixnum
Scheduled start time for the outage (milliseconds since Unix epoch).
-
#state ⇒ String
State of this notification, which can take one of the following values: - ACTIVE: This outage notification is active.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InterconnectOutageNotification
constructor
A new instance of InterconnectOutageNotification.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InterconnectOutageNotification
Returns a new instance of InterconnectOutageNotification.
22093 22094 22095 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22093 def initialize(**args) update!(**args) end |
Instance Attribute Details
#affected_circuits ⇒ Array<String>
If issue_type is IT_PARTIAL_OUTAGE, a list of the Google-side circuit IDs that
will be affected.
Corresponds to the JSON property affectedCircuits
22043 22044 22045 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22043 def affected_circuits @affected_circuits end |
#description ⇒ String
A description about the purpose of the outage.
Corresponds to the JSON property description
22048 22049 22050 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22048 def description @description end |
#end_time ⇒ Fixnum
Scheduled end time for the outage (milliseconds since Unix epoch).
Corresponds to the JSON property endTime
22053 22054 22055 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22053 def end_time @end_time end |
#issue_type ⇒ String
Form this outage is expected to take, which can take one of the following
values: - OUTAGE: The Interconnect may be completely out of service for some
or all of the specified window. - PARTIAL_OUTAGE: Some circuits comprising the
Interconnect as a whole should remain up, but with reduced bandwidth. Note
that the versions of this enum prefixed with "IT_" have been deprecated in
favor of the unprefixed values.
Corresponds to the JSON property issueType
22063 22064 22065 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22063 def issue_type @issue_type end |
#name ⇒ String
Unique identifier for this outage notification.
Corresponds to the JSON property name
22068 22069 22070 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22068 def name @name end |
#source ⇒ String
The party that generated this notification, which can take the following value:
- GOOGLE: this notification as generated by Google. Note that the value of
NSRC_GOOGLE has been deprecated in favor of GOOGLE.
Corresponds to the JSON property
source
22075 22076 22077 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22075 def source @source end |
#start_time ⇒ Fixnum
Scheduled start time for the outage (milliseconds since Unix epoch).
Corresponds to the JSON property startTime
22080 22081 22082 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22080 def start_time @start_time end |
#state ⇒ String
State of this notification, which can take one of the following values: -
ACTIVE: This outage notification is active. The event could be in the past,
present, or future. See start_time and end_time for scheduling. - CANCELLED:
The outage associated with this notification was cancelled before the outage
was due to start. - COMPLETED: The outage associated with this notification is
complete. Note that the versions of this enum prefixed with "NS_" have been
deprecated in favor of the unprefixed values.
Corresponds to the JSON property state
22091 22092 22093 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22091 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22098 def update!(**args) @affected_circuits = args[:affected_circuits] if args.key?(:affected_circuits) @description = args[:description] if args.key?(:description) @end_time = args[:end_time] if args.key?(:end_time) @issue_type = args[:issue_type] if args.key?(:issue_type) @name = args[:name] if args.key?(:name) @source = args[:source] if args.key?(:source) @start_time = args[:start_time] if args.key?(:start_time) @state = args[:state] if args.key?(:state) end |