google_api_compute v0.11.0 GoogleApi.Compute.V1.Model.CorsPolicy View Source

The specification for allowing client side cross-origin requests. Please see W3C Recommendation for Cross Origin Resource Sharing

Attributes

  • allowCredentials (type: boolean(), default: nil) - In response to a preflight request, setting this to true indicates that the actual request can include user credentials. This translates to the Access-Control-Allow-Credentials header. Default is false.
  • allowHeaders (type: list(String.t), default: nil) - Specifies the content for the Access-Control-Allow-Headers header.
  • allowMethods (type: list(String.t), default: nil) - Specifies the content for the Access-Control-Allow-Methods header.
  • allowOriginRegexes (type: list(String.t), default: nil) - Specifies the regualar expression patterns that match allowed origins. For regular expression grammar please see en.cppreference.com/w/cpp/regex/ecmascript An origin is allowed if it matches either allow_origins or allow_origin_regex.
  • allowOrigins (type: list(String.t), default: nil) - Specifies the list of origins that will be allowed to do CORS requests. An origin is allowed if it matches either allow_origins or allow_origin_regex.
  • disabled (type: boolean(), default: nil) - If true, specifies the CORS policy is disabled. The default value of false, which indicates that the CORS policy is in effect.
  • exposeHeaders (type: list(String.t), default: nil) - Specifies the content for the Access-Control-Expose-Headers header.
  • maxAge (type: integer(), default: nil) - Specifies how long results of a preflight request can be cached in seconds. This translates to the Access-Control-Max-Age header.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Link to this type

t()

View Source
t() :: %GoogleApi.Compute.V1.Model.CorsPolicy{
  allowCredentials: boolean(),
  allowHeaders: [String.t()],
  allowMethods: [String.t()],
  allowOriginRegexes: [String.t()],
  allowOrigins: [String.t()],
  disabled: boolean(),
  exposeHeaders: [String.t()],
  maxAge: integer()
}

Link to this section Functions

Link to this function

decode(value, options)

View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.