View Source GoogleApi.AppEngine.V1.Model.UrlDispatchRule (google_api_app_engine v0.42.0)

Rules to match an HTTP request and dispatch that request to a service.

Attributes

  • domain (type: String.t, default: nil) - Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
  • path (type: String.t, default: nil) - Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
  • service (type: String.t, default: nil) - Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

t()

@type t() :: %GoogleApi.AppEngine.V1.Model.UrlDispatchRule{
  domain: String.t() | nil,
  path: String.t() | nil,
  service: String.t() | nil
}

Functions

decode(value, options)

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.