Class: Google::Apis::ComputeAlpha::UrlMapTest

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UrlMapTest

Returns a new instance of UrlMapTest.



36821
36822
36823
# File 'generated/google/apis/compute_alpha/classes.rb', line 36821

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#backend_service_weightFixnum

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

Returns:

  • (Fixnum)


36793
36794
36795
# File 'generated/google/apis/compute_alpha/classes.rb', line 36793

def backend_service_weight
  @backend_service_weight
end

#descriptionString

Description of this test case. Corresponds to the JSON property description

Returns:

  • (String)


36798
36799
36800
# File 'generated/google/apis/compute_alpha/classes.rb', line 36798

def description
  @description
end

#expected_url_redirectString

The expected URL that should be redirected to for the host and path being tested. Corresponds to the JSON property expectedUrlRedirect

Returns:

  • (String)


36804
36805
36806
# File 'generated/google/apis/compute_alpha/classes.rb', line 36804

def expected_url_redirect
  @expected_url_redirect
end

#hostString

Host portion of the URL. Corresponds to the JSON property host

Returns:

  • (String)


36809
36810
36811
# File 'generated/google/apis/compute_alpha/classes.rb', line 36809

def host
  @host
end

#pathString

Path portion of the URL. Corresponds to the JSON property path

Returns:

  • (String)


36814
36815
36816
# File 'generated/google/apis/compute_alpha/classes.rb', line 36814

def path
  @path
end

#serviceString

Expected BackendService resource the given URL should be mapped to. Corresponds to the JSON property service

Returns:

  • (String)


36819
36820
36821
# File 'generated/google/apis/compute_alpha/classes.rb', line 36819

def service
  @service
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



36826
36827
36828
36829
36830
36831
36832
36833
# File 'generated/google/apis/compute_alpha/classes.rb', line 36826

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