Class: Google::Apis::ComputeAlpha::InterconnectMacsec

Inherits:
Object
  • Object
show all
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

Configuration information for enabling Media Access Control security (Macsec) on this Interconnect between Google and your on-premises router.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InterconnectMacsec

Returns a new instance of InterconnectMacsec.



22449
22450
22451
# File 'lib/google/apis/compute_alpha/classes.rb', line 22449

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#fail_openBoolean Also known as: fail_open?

If set to true, the Interconnect will be configured with a should-secure MACsec security policy, that allows the Google router to fallback to cleartext traffic if the MKA session cannot be established. By default, the Interconnect will be configured with a must-secure security policy that drops all traffic if the MKA session cannot be established with your router. Corresponds to the JSON property failOpen

Returns:

  • (Boolean)


22438
22439
22440
# File 'lib/google/apis/compute_alpha/classes.rb', line 22438

def fail_open
  @fail_open
end

#pre_shared_keysArray<Google::Apis::ComputeAlpha::InterconnectMacsecPreSharedKey>

Required. 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



22447
22448
22449
# File 'lib/google/apis/compute_alpha/classes.rb', line 22447

def pre_shared_keys
  @pre_shared_keys
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



22454
22455
22456
22457
# File 'lib/google/apis/compute_alpha/classes.rb', line 22454

def update!(**args)
  @fail_open = args[:fail_open] if args.key?(:fail_open)
  @pre_shared_keys = args[:pre_shared_keys] if args.key?(:pre_shared_keys)
end