Class: Google::Apis::ComputeBeta::InterconnectMacsecConfigPreSharedKey
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InterconnectMacsecConfigPreSharedKey
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
Describes a pre-shared key used to setup MACsec in static connectivity association key (CAK) mode.
Instance Attribute Summary collapse
-
#cak ⇒ String
An auto-generated Connectivity Association Key (CAK) for this key.
-
#ckn ⇒ String
An auto-generated Connectivity Association Key Name (CKN) for this key.
-
#name ⇒ String
User provided name for this pre-shared key.
-
#start_time ⇒ String
User provided timestamp on or after which this key is valid.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InterconnectMacsecConfigPreSharedKey
constructor
A new instance of InterconnectMacsecConfigPreSharedKey.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InterconnectMacsecConfigPreSharedKey
Returns a new instance of InterconnectMacsecConfigPreSharedKey.
22527 22528 22529 |
# File 'lib/google/apis/compute_beta/classes.rb', line 22527 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cak ⇒ String
An auto-generated Connectivity Association Key (CAK) for this key.
Corresponds to the JSON property cak
22510 22511 22512 |
# File 'lib/google/apis/compute_beta/classes.rb', line 22510 def cak @cak end |
#ckn ⇒ String
An auto-generated Connectivity Association Key Name (CKN) for this key.
Corresponds to the JSON property ckn
22515 22516 22517 |
# File 'lib/google/apis/compute_beta/classes.rb', line 22515 def ckn @ckn end |
#name ⇒ String
User provided name for this pre-shared key.
Corresponds to the JSON property name
22520 22521 22522 |
# File 'lib/google/apis/compute_beta/classes.rb', line 22520 def name @name end |
#start_time ⇒ String
User provided timestamp on or after which this key is valid.
Corresponds to the JSON property startTime
22525 22526 22527 |
# File 'lib/google/apis/compute_beta/classes.rb', line 22525 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
22532 22533 22534 22535 22536 22537 |
# File 'lib/google/apis/compute_beta/classes.rb', line 22532 def update!(**args) @cak = args[:cak] if args.key?(:cak) @ckn = args[:ckn] if args.key?(:ckn) @name = args[:name] if args.key?(:name) @start_time = args[:start_time] if args.key?(:start_time) end |