Class: Google::Apis::ComputeBeta::RouterMd5AuthenticationKey
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::RouterMd5AuthenticationKey
- 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
Instance Attribute Summary collapse
-
#key ⇒ String
[Input only] Value of the key.
-
#name ⇒ String
Name used to identify the key.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RouterMd5AuthenticationKey
constructor
A new instance of RouterMd5AuthenticationKey.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RouterMd5AuthenticationKey
Returns a new instance of RouterMd5AuthenticationKey.
31468 31469 31470 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31468 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
[Input only] Value of the key. For patch and update calls, it can be skipped
to copy the value from the previous configuration. This is allowed if the key
with the same name existed before the operation. Maximum length is 80
characters. Can only contain printable ASCII characters.
Corresponds to the JSON property key
31460 31461 31462 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31460 def key @key end |
#name ⇒ String
Name used to identify the key. Must be unique within a router. Must be
referenced by at least one bgpPeer. Must comply with RFC1035.
Corresponds to the JSON property name
31466 31467 31468 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31466 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31473 31474 31475 31476 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31473 def update!(**args) @key = args[:key] if args.key?(:key) @name = args[:name] if args.key?(:name) end |