Class: Google::Apis::ComputeBeta::InterconnectDiagnosticsMacsecStatus
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::InterconnectDiagnosticsMacsecStatus
 
 
- 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 the status of MACsec encryption on the link.
Instance Attribute Summary collapse
- 
  
    
      #ckn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates the Connectivity Association Key Name (CKN) currently being used if MACsec is operational.
 - 
  
    
      #operational  ⇒ Boolean 
    
    
      (also: #operational?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether or not MACsec is operational on this link.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InterconnectDiagnosticsMacsecStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InterconnectDiagnosticsMacsecStatus.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ InterconnectDiagnosticsMacsecStatus
Returns a new instance of InterconnectDiagnosticsMacsecStatus.
      22021 22022 22023  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 22021 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#ckn ⇒ String
Indicates the Connectivity Association Key Name (CKN) currently being used if
MACsec is operational.
Corresponds to the JSON property ckn
      22013 22014 22015  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 22013 def ckn @ckn end  | 
  
#operational ⇒ Boolean Also known as: operational?
Indicates whether or not MACsec is operational on this link.
Corresponds to the JSON property operational
      22018 22019 22020  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 22018 def operational @operational end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      22026 22027 22028 22029  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 22026 def update!(**args) @ckn = args[:ckn] if args.key?(:ckn) @operational = args[:operational] if args.key?(:operational) end  |