Class: Google::Apis::ComputeBeta::UrlMapTestHeader
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::UrlMapTestHeader
- 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
Overview
HTTP headers used in UrlMapTests.
Instance Attribute Summary collapse
-
#name ⇒ String
Header name.
-
#value ⇒ String
Header value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UrlMapTestHeader
constructor
A new instance of UrlMapTestHeader.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UrlMapTestHeader
Returns a new instance of UrlMapTestHeader.
52441 52442 52443 |
# File 'lib/google/apis/compute_beta/classes.rb', line 52441 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Header name.
Corresponds to the JSON property name
52434 52435 52436 |
# File 'lib/google/apis/compute_beta/classes.rb', line 52434 def name @name end |
#value ⇒ String
Header value.
Corresponds to the JSON property value
52439 52440 52441 |
# File 'lib/google/apis/compute_beta/classes.rb', line 52439 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
52446 52447 52448 52449 |
# File 'lib/google/apis/compute_beta/classes.rb', line 52446 def update!(**args) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end |