class Google::Apis::ComputeBeta::UrlMapTest

Message for the expected URL mappings.

Attributes

description[RW]

Description of this test case. Corresponds to the JSON property `description` @return [String]

host[RW]

Host portion of the URL. Corresponds to the JSON property `host` @return [String]

path[RW]

Path portion of the URL. Corresponds to the JSON property `path` @return [String]

service[RW]

Expected BackendService resource the given URL should be mapped to. Corresponds to the JSON property `service` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/compute_beta/classes.rb, line 9413
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/compute_beta/classes.rb, line 9418
def update!(**args)
  @description = args[:description] if args.key?(:description)
  @host = args[:host] if args.key?(:host)
  @path = args[:path] if args.key?(:path)
  @service = args[:service] if args.key?(:service)
end