Class: Google::Apis::RunV1alpha1::HttpHeader
- Inherits:
-
Object
- Object
- Google::Apis::RunV1alpha1::HttpHeader
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/run_v1alpha1/classes.rb,
generated/google/apis/run_v1alpha1/representations.rb,
generated/google/apis/run_v1alpha1/representations.rb
Overview
HTTPHeader describes a custom header to be used in HTTP probes
Instance Attribute Summary collapse
-
#name ⇒ String
The header field name Corresponds to the JSON property
name
. -
#value ⇒ String
The header field value Corresponds to the JSON property
value
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HttpHeader
constructor
A new instance of HttpHeader.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ HttpHeader
Returns a new instance of HttpHeader
1500 1501 1502 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1500 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The header field name
Corresponds to the JSON property name
1493 1494 1495 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1493 def name @name end |
#value ⇒ String
The header field value
Corresponds to the JSON property value
1498 1499 1500 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1498 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1505 1506 1507 1508 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1505 def update!(**args) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end |