Class: Google::Apis::ComputeAlpha::UrlMapTest
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::UrlMapTest
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Overview
Message for the expected URL mappings.
Instance Attribute Summary collapse
-
#backend_service_weight ⇒ Fixnum
The weight to use for the supplied host and path when using advanced routing rules that involve traffic splitting.
-
#description ⇒ String
Description of this test case.
-
#expected_url_redirect ⇒ String
The expected URL that should be redirected to for the host and path being tested.
-
#host ⇒ String
Host portion of the URL.
-
#path ⇒ String
Path portion of the URL.
-
#service ⇒ String
Expected BackendService resource the given URL should be mapped to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UrlMapTest
constructor
A new instance of UrlMapTest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ UrlMapTest
Returns a new instance of UrlMapTest
31075 31076 31077 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 31075 def initialize(**args) update!(**args) end |
Instance Attribute Details
#backend_service_weight ⇒ Fixnum
The weight to use for the supplied host and path when using advanced routing
rules that involve traffic splitting.
Corresponds to the JSON property backendServiceWeight
31047 31048 31049 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 31047 def backend_service_weight @backend_service_weight end |
#description ⇒ String
Description of this test case.
Corresponds to the JSON property description
31052 31053 31054 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 31052 def description @description end |
#expected_url_redirect ⇒ String
The expected URL that should be redirected to for the host and path being
tested.
Corresponds to the JSON property expectedUrlRedirect
31058 31059 31060 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 31058 def expected_url_redirect @expected_url_redirect end |
#host ⇒ String
Host portion of the URL.
Corresponds to the JSON property host
31063 31064 31065 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 31063 def host @host end |
#path ⇒ String
Path portion of the URL.
Corresponds to the JSON property path
31068 31069 31070 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 31068 def path @path end |
#service ⇒ String
Expected BackendService resource the given URL should be mapped to.
Corresponds to the JSON property service
31073 31074 31075 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 31073 def service @service end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31080 31081 31082 31083 31084 31085 31086 31087 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 31080 def update!(**args) @backend_service_weight = args[:backend_service_weight] if args.key?(:backend_service_weight) @description = args[:description] if args.key?(:description) @expected_url_redirect = args[:expected_url_redirect] if args.key?(:expected_url_redirect) @host = args[:host] if args.key?(:host) @path = args[:path] if args.key?(:path) @service = args[:service] if args.key?(:service) end |