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
1320 1321 1322 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1320 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The header field name
Corresponds to the JSON property name
1313 1314 1315 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1313 def name @name end |
#value ⇒ String
The header field value
Corresponds to the JSON property value
1318 1319 1320 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1318 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1325 1326 1327 1328 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1325 def update!(**args) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end |