Class: Google::Apis::ComputeV1::TestFailure
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::TestFailure
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
-
#actual_output_url ⇒ String
The actual output URL evaluated by load balancer containing the scheme, host, path and query parameters.
-
#actual_redirect_response_code ⇒ Fixnum
Actual HTTP status code for rule with
urlRedirectcalculated by load balancer Corresponds to the JSON propertyactualRedirectResponseCode. -
#actual_service ⇒ String
BackendService or BackendBucket returned by load balancer.
-
#expected_output_url ⇒ String
The expected output URL evaluated by load balancer containing the scheme, host, path and query parameters.
-
#expected_redirect_response_code ⇒ Fixnum
Expected HTTP status code for rule with
urlRedirectcalculated by load balancer Corresponds to the JSON propertyexpectedRedirectResponseCode. -
#expected_service ⇒ String
Expected BackendService or BackendBucket resource the given URL should be mapped to.
-
#headers ⇒ Array<Google::Apis::ComputeV1::UrlMapTestHeader>
HTTP headers of the request.
-
#host ⇒ String
Host portion of the URL.
-
#path ⇒ String
Path portion including query parameters in the URL.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TestFailure
constructor
A new instance of TestFailure.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TestFailure
Returns a new instance of TestFailure.
35164 35165 35166 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35164 def initialize(**args) update!(**args) end |
Instance Attribute Details
#actual_output_url ⇒ String
The actual output URL evaluated by load balancer containing the scheme, host,
path and query parameters.
Corresponds to the JSON property actualOutputUrl
35118 35119 35120 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35118 def actual_output_url @actual_output_url end |
#actual_redirect_response_code ⇒ Fixnum
Actual HTTP status code for rule with urlRedirect calculated by load
balancer
Corresponds to the JSON property actualRedirectResponseCode
35124 35125 35126 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35124 def actual_redirect_response_code @actual_redirect_response_code end |
#actual_service ⇒ String
BackendService or BackendBucket returned by load balancer.
Corresponds to the JSON property actualService
35129 35130 35131 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35129 def actual_service @actual_service end |
#expected_output_url ⇒ String
The expected output URL evaluated by load balancer containing the scheme, host,
path and query parameters.
Corresponds to the JSON property expectedOutputUrl
35135 35136 35137 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35135 def expected_output_url @expected_output_url end |
#expected_redirect_response_code ⇒ Fixnum
Expected HTTP status code for rule with urlRedirect calculated by load
balancer
Corresponds to the JSON property expectedRedirectResponseCode
35141 35142 35143 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35141 def expected_redirect_response_code @expected_redirect_response_code end |
#expected_service ⇒ String
Expected BackendService or BackendBucket resource the given URL should be
mapped to.
Corresponds to the JSON property expectedService
35147 35148 35149 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35147 def expected_service @expected_service end |
#headers ⇒ Array<Google::Apis::ComputeV1::UrlMapTestHeader>
HTTP headers of the request.
Corresponds to the JSON property headers
35152 35153 35154 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35152 def headers @headers end |
#host ⇒ String
Host portion of the URL.
Corresponds to the JSON property host
35157 35158 35159 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35157 def host @host end |
#path ⇒ String
Path portion including query parameters in the URL.
Corresponds to the JSON property path
35162 35163 35164 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35162 def path @path end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
35169 35170 35171 35172 35173 35174 35175 35176 35177 35178 35179 |
# File 'lib/google/apis/compute_v1/classes.rb', line 35169 def update!(**args) @actual_output_url = args[:actual_output_url] if args.key?(:actual_output_url) @actual_redirect_response_code = args[:actual_redirect_response_code] if args.key?(:actual_redirect_response_code) @actual_service = args[:actual_service] if args.key?(:actual_service) @expected_output_url = args[:expected_output_url] if args.key?(:expected_output_url) @expected_redirect_response_code = args[:expected_redirect_response_code] if args.key?(:expected_redirect_response_code) @expected_service = args[:expected_service] if args.key?(:expected_service) @headers = args[:headers] if args.key?(:headers) @host = args[:host] if args.key?(:host) @path = args[:path] if args.key?(:path) end |