Class: Google::Apis::ComputeV1::VpnTunnelPhase1Algorithms
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::VpnTunnelPhase1Algorithms
- 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
-
#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.
69001 69002 69003 |
# File 'lib/google/apis/compute_v1/classes.rb', line 69001 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dh ⇒ Array<String>
Corresponds to the JSON property dh
68984 68985 68986 |
# File 'lib/google/apis/compute_v1/classes.rb', line 68984 def dh @dh end |
#encryption ⇒ Array<String>
Corresponds to the JSON property encryption
68989 68990 68991 |
# File 'lib/google/apis/compute_v1/classes.rb', line 68989 def encryption @encryption end |
#integrity ⇒ Array<String>
Corresponds to the JSON property integrity
68994 68995 68996 |
# File 'lib/google/apis/compute_v1/classes.rb', line 68994 def integrity @integrity end |
#prf ⇒ Array<String>
Corresponds to the JSON property prf
68999 69000 69001 |
# File 'lib/google/apis/compute_v1/classes.rb', line 68999 def prf @prf end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
69006 69007 69008 69009 69010 69011 |
# File 'lib/google/apis/compute_v1/classes.rb', line 69006 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 |