Class: Google::Compute::Data::UrlMapTestsCatalog

Inherits:
UrlMapTests
  • Object
show all
Defined in:
lib/google/compute/property/urlmap_tests.rb

Overview

Manages a UrlMapTests nested object Data is coming from the Puppet manifest

Instance Attribute Summary

Attributes inherited from UrlMapTests

#description, #host, #path, #service

Instance Method Summary collapse

Methods inherited from UrlMapTests

#<=>, #==, #to_json, #to_s

Constructor Details

#initialize(args) ⇒ UrlMapTestsCatalog

Returns a new instance of UrlMapTestsCatalog.



109
110
111
112
113
114
115
116
117
118
# File 'lib/google/compute/property/urlmap_tests.rb', line 109

def initialize(args)
  @description =
    Google::Compute::Property::String.unsafe_munge(args['description'])
  @host = Google::Compute::Property::String.unsafe_munge(args['host'])
  @path = Google::Compute::Property::String.unsafe_munge(args['path'])
  @service =
    Google::Compute::Property::BackServSelfLinkRef.unsafe_munge(
      args['service']
    )
end