Class: Google::Apis::ComputeAlpha::UrlMapsValidateRequest

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UrlMapsValidateRequest

Returns a new instance of UrlMapsValidateRequest.



46132
46133
46134
# File 'lib/google/apis/compute_alpha/classes.rb', line 46132

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

Instance Attribute Details

#load_balancing_schemesArray<String>

Specifies the load balancer type(s) this validation request is for. Use EXTERNAL_MANAGED for HTTP/HTTPS External Global Load Balancer with Advanced Traffic Management. Use EXTERNAL for Classic HTTP/HTTPS External Global Load Balancer. Other load balancer types are not supported. For more information, refer to Choosing a load balancer. If unspecified, the load balancing scheme will be inferred from the backend service resources this URL map references. If that can not be inferred (for example, this URL map only references backend buckets, or this Url map is for rewrites and redirects only and doesn't reference any backends), EXTERNAL will be used as the default type. If specified, the scheme(s) must not conflict with the load balancing scheme of the backend service resources this Url map references. Corresponds to the JSON property loadBalancingSchemes

Returns:

  • (Array<String>)


46111
46112
46113
# File 'lib/google/apis/compute_alpha/classes.rb', line 46111

def load_balancing_schemes
  @load_balancing_schemes
end

#resourceGoogle::Apis::ComputeAlpha::UrlMap

Represents a URL Map resource. Compute Engine has two URL Map resources: * Global * Regional A URL map resource is a component of certain types of cloud load balancers and Traffic Director: * urlMaps are used by external HTTP(S) load balancers and Traffic Director. * regionUrlMaps are used by internal HTTP(S) load balancers. For a list of supported URL map features by the load balancer type, see the Load balancing features: Routing and traffic management table. For a list of supported URL map features for Traffic Director, see the Traffic Director features: Routing and traffic management table. This resource defines mappings from hostnames and URL paths to either a backend service or a backend bucket. To use the global urlMaps resource, the backend service must have a loadBalancingScheme of either EXTERNAL or INTERNAL_SELF_MANAGED. To use the regionUrlMaps resource, the backend service must have a loadBalancingScheme of INTERNAL_MANAGED. For more information, read URL Map Concepts. Corresponds to the JSON property resource



46130
46131
46132
# File 'lib/google/apis/compute_alpha/classes.rb', line 46130

def resource
  @resource
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



46137
46138
46139
46140
# File 'lib/google/apis/compute_alpha/classes.rb', line 46137

def update!(**args)
  @load_balancing_schemes = args[:load_balancing_schemes] if args.key?(:load_balancing_schemes)
  @resource = args[:resource] if args.key?(:resource)
end