Class: Google::Apis::ComputeBeta::VpnTunnelPhase2Algorithms
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::VpnTunnelPhase2Algorithms
- 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
-
#encryption ⇒ Array<String>
Corresponds to the JSON property
encryption. -
#integrity ⇒ Array<String>
Corresponds to the JSON property
integrity. -
#pfs ⇒ Array<String>
Corresponds to the JSON property
pfs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VpnTunnelPhase2Algorithms
constructor
A new instance of VpnTunnelPhase2Algorithms.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VpnTunnelPhase2Algorithms
Returns a new instance of VpnTunnelPhase2Algorithms.
75291 75292 75293 |
# File 'lib/google/apis/compute_beta/classes.rb', line 75291 def initialize(**args) update!(**args) end |
Instance Attribute Details
#encryption ⇒ Array<String>
Corresponds to the JSON property encryption
75279 75280 75281 |
# File 'lib/google/apis/compute_beta/classes.rb', line 75279 def encryption @encryption end |
#integrity ⇒ Array<String>
Corresponds to the JSON property integrity
75284 75285 75286 |
# File 'lib/google/apis/compute_beta/classes.rb', line 75284 def integrity @integrity end |
#pfs ⇒ Array<String>
Corresponds to the JSON property pfs
75289 75290 75291 |
# File 'lib/google/apis/compute_beta/classes.rb', line 75289 def pfs @pfs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
75296 75297 75298 75299 75300 |
# File 'lib/google/apis/compute_beta/classes.rb', line 75296 def update!(**args) @encryption = args[:encryption] if args.key?(:encryption) @integrity = args[:integrity] if args.key?(:integrity) @pfs = args[:pfs] if args.key?(:pfs) end |