Class: Google::Apis::ComputeAlpha::VpnTunnelPhase1Algorithms
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::VpnTunnelPhase1Algorithms
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/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.
72075 72076 72077 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 72075 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dh ⇒ Array<String>
Corresponds to the JSON property dh
72058 72059 72060 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 72058 def dh @dh end |
#encryption ⇒ Array<String>
Corresponds to the JSON property encryption
72063 72064 72065 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 72063 def encryption @encryption end |
#integrity ⇒ Array<String>
Corresponds to the JSON property integrity
72068 72069 72070 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 72068 def integrity @integrity end |
#prf ⇒ Array<String>
Corresponds to the JSON property prf
72073 72074 72075 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 72073 def prf @prf end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
72080 72081 72082 72083 72084 72085 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 72080 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 |