Class: Google::Apis::ComputeV1::VpnTunnelPhase1Algorithms

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VpnTunnelPhase1Algorithms

Returns a new instance of VpnTunnelPhase1Algorithms.



69015
69016
69017
# File 'lib/google/apis/compute_v1/classes.rb', line 69015

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

Instance Attribute Details

#dhArray<String>

Corresponds to the JSON property dh

Returns:

  • (Array<String>)


68998
68999
69000
# File 'lib/google/apis/compute_v1/classes.rb', line 68998

def dh
  @dh
end

#encryptionArray<String>

Corresponds to the JSON property encryption

Returns:

  • (Array<String>)


69003
69004
69005
# File 'lib/google/apis/compute_v1/classes.rb', line 69003

def encryption
  @encryption
end

#integrityArray<String>

Corresponds to the JSON property integrity

Returns:

  • (Array<String>)


69008
69009
69010
# File 'lib/google/apis/compute_v1/classes.rb', line 69008

def integrity
  @integrity
end

#prfArray<String>

Corresponds to the JSON property prf

Returns:

  • (Array<String>)


69013
69014
69015
# File 'lib/google/apis/compute_v1/classes.rb', line 69013

def prf
  @prf
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



69020
69021
69022
69023
69024
69025
# File 'lib/google/apis/compute_v1/classes.rb', line 69020

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