Class: Google::Apis::ComputeAlpha::InterconnectMacsecConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InterconnectMacsecConfig
- 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
MACsec configuration information for the Interconnect. Contains the generated Connectivity Association Key Name (CKN) and the key (CAK) for this Interconnect.
Instance Attribute Summary collapse
-
#pre_shared_keys ⇒ Array<Google::Apis::ComputeAlpha::InterconnectMacsecConfigPreSharedKey>
A keychain placeholder describing a set of named key objects along with their start times.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InterconnectMacsecConfig
constructor
A new instance of InterconnectMacsecConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InterconnectMacsecConfig
Returns a new instance of InterconnectMacsecConfig.
22272 22273 22274 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22272 def initialize(**args) update!(**args) end |
Instance Attribute Details
#pre_shared_keys ⇒ Array<Google::Apis::ComputeAlpha::InterconnectMacsecConfigPreSharedKey>
A keychain placeholder describing a set of named key objects along with their
start times. A MACsec CKN/CAK will be generated for each key in the key chain.
Google router will automatically pick the key with the most recent startTime
when establishing or re-establishing a MACsec secure link.
Corresponds to the JSON property preSharedKeys
22270 22271 22272 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22270 def pre_shared_keys @pre_shared_keys end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
22277 22278 22279 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22277 def update!(**args) @pre_shared_keys = args[:pre_shared_keys] if args.key?(:pre_shared_keys) end |