Class: Google::Apis::ComputeBeta::VpnTunnelPhase1Algorithms
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::VpnTunnelPhase1Algorithms
- 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
-
#dh ⇒ Array<String>
Corresponds to the JSON property
dh. -
#encryption ⇒ Array<String>
Corresponds to the JSON property
encryption. -
#integrity ⇒ Array<String>
Corresponds to the JSON property
integrity. -
#prf ⇒ Array<String>
Corresponds to the JSON property
prf.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VpnTunnelPhase1Algorithms
constructor
A new instance of VpnTunnelPhase1Algorithms.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VpnTunnelPhase1Algorithms
Returns a new instance of VpnTunnelPhase1Algorithms.
75289 75290 75291 |
# File 'lib/google/apis/compute_beta/classes.rb', line 75289 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dh ⇒ Array<String>
Corresponds to the JSON property dh
75272 75273 75274 |
# File 'lib/google/apis/compute_beta/classes.rb', line 75272 def dh @dh end |
#encryption ⇒ Array<String>
Corresponds to the JSON property encryption
75277 75278 75279 |
# File 'lib/google/apis/compute_beta/classes.rb', line 75277 def encryption @encryption end |
#integrity ⇒ Array<String>
Corresponds to the JSON property integrity
75282 75283 75284 |
# File 'lib/google/apis/compute_beta/classes.rb', line 75282 def integrity @integrity end |
#prf ⇒ Array<String>
Corresponds to the JSON property prf
75287 75288 75289 |
# File 'lib/google/apis/compute_beta/classes.rb', line 75287 def prf @prf end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
75294 75295 75296 75297 75298 75299 |
# File 'lib/google/apis/compute_beta/classes.rb', line 75294 def update!(**args) @dh = args[:dh] if args.key?(:dh) @encryption = args[:encryption] if args.key?(:encryption) @integrity = args[:integrity] if args.key?(:integrity) @prf = args[:prf] if args.key?(:prf) end |