Class: Google::Apis::FirebasehostingV1beta1::Header
- Inherits:
-
Object
- Object
- Google::Apis::FirebasehostingV1beta1::Header
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebasehosting_v1beta1/classes.rb,
lib/google/apis/firebasehosting_v1beta1/representations.rb,
lib/google/apis/firebasehosting_v1beta1/representations.rb
Overview
A Header
specifies a URL pattern that, if matched to the request URL path, triggers
Hosting to apply the specified custom response headers.
Instance Attribute Summary collapse
-
#glob ⇒ String
The user-supplied glob to match against the request URL path.
-
#headers ⇒ Hash<String,String>
Required.
-
#regex ⇒ String
The user-supplied RE2 regular expression to match against the request URL path.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Header
constructor
A new instance of Header.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Header
Returns a new instance of Header.
437 438 439 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 437 def initialize(**args) update!(**args) end |
Instance Attribute Details
#glob ⇒ String
The user-supplied glob to match against the request URL path.
Corresponds to the JSON property glob
425 426 427 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 425 def glob @glob end |
#headers ⇒ Hash<String,String>
Required. The additional headers to add to the response.
Corresponds to the JSON property headers
430 431 432 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 430 def headers @headers end |
#regex ⇒ String
The user-supplied RE2 regular expression to match against the request URL path.
Corresponds to the JSON property regex
435 436 437 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 435 def regex @regex end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
442 443 444 445 446 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 442 def update!(**args) @glob = args[:glob] if args.key?(:glob) @headers = args[:headers] if args.key?(:headers) @regex = args[:regex] if args.key?(:regex) end |