Class: Google::Apis::ComputeBeta::SecurityPolicyRuleHttpHeaderActionHttpHeaderOption
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::SecurityPolicyRuleHttpHeaderActionHttpHeaderOption
- 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
-
#header_name ⇒ String
The name of the header to set.
-
#header_value ⇒ String
The value to set the named header to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecurityPolicyRuleHttpHeaderActionHttpHeaderOption
constructor
A new instance of SecurityPolicyRuleHttpHeaderActionHttpHeaderOption.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecurityPolicyRuleHttpHeaderActionHttpHeaderOption
Returns a new instance of SecurityPolicyRuleHttpHeaderActionHttpHeaderOption.
33737 33738 33739 |
# File 'lib/google/apis/compute_beta/classes.rb', line 33737 def initialize(**args) update!(**args) end |
Instance Attribute Details
#header_name ⇒ String
The name of the header to set.
Corresponds to the JSON property headerName
33730 33731 33732 |
# File 'lib/google/apis/compute_beta/classes.rb', line 33730 def header_name @header_name end |
#header_value ⇒ String
The value to set the named header to.
Corresponds to the JSON property headerValue
33735 33736 33737 |
# File 'lib/google/apis/compute_beta/classes.rb', line 33735 def header_value @header_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
33742 33743 33744 33745 |
# File 'lib/google/apis/compute_beta/classes.rb', line 33742 def update!(**args) @header_name = args[:header_name] if args.key?(:header_name) @header_value = args[:header_value] if args.key?(:header_value) end |