Class: Google::Apis::ComputeBeta::CorsPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::CorsPolicy
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
The specification for allowing client-side cross-origin requests. For more information about the W3C recommendation for cross-origin resource sharing ( CORS), see Fetch API Living Standard.
Instance Attribute Summary collapse
-
#allow_credentials ⇒ Boolean
(also: #allow_credentials?)
In response to a preflight request, setting this to true indicates that the actual request can include user credentials.
-
#allow_headers ⇒ Array<String>
Specifies the content for the Access-Control-Allow-Headers header.
-
#allow_methods ⇒ Array<String>
Specifies the content for the Access-Control-Allow-Methods header.
-
#allow_origin_regexes ⇒ Array<String>
Specifies a regular expression that matches allowed origins.
-
#allow_origins ⇒ Array<String>
Specifies the list of origins that is allowed to do CORS requests.
-
#disabled ⇒ Boolean
(also: #disabled?)
If true, disables the CORS policy.
-
#expose_headers ⇒ Array<String>
Specifies the content for the Access-Control-Expose-Headers header.
-
#max_age ⇒ Fixnum
Specifies how long results of a preflight request can be cached in seconds.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CorsPolicy
constructor
A new instance of CorsPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CorsPolicy
Returns a new instance of CorsPolicy.
6427 6428 6429 |
# File 'lib/google/apis/compute_beta/classes.rb', line 6427 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allow_credentials ⇒ Boolean Also known as: allow_credentials?
In response to a preflight request, setting this to true indicates that the
actual request can include user credentials. This field translates to the
Access-Control-Allow-Credentials header. Default is false.
Corresponds to the JSON property allowCredentials
6380 6381 6382 |
# File 'lib/google/apis/compute_beta/classes.rb', line 6380 def allow_credentials @allow_credentials end |
#allow_headers ⇒ Array<String>
Specifies the content for the Access-Control-Allow-Headers header.
Corresponds to the JSON property allowHeaders
6386 6387 6388 |
# File 'lib/google/apis/compute_beta/classes.rb', line 6386 def allow_headers @allow_headers end |
#allow_methods ⇒ Array<String>
Specifies the content for the Access-Control-Allow-Methods header.
Corresponds to the JSON property allowMethods
6391 6392 6393 |
# File 'lib/google/apis/compute_beta/classes.rb', line 6391 def allow_methods @allow_methods end |
#allow_origin_regexes ⇒ Array<String>
Specifies a regular expression that matches allowed origins. For more
information, see regular expression syntax . An origin is allowed if it
matches either an item in allowOrigins or an item in allowOriginRegexes.
Regular expressions can only be used when the loadBalancingScheme is set to
INTERNAL_SELF_MANAGED.
Corresponds to the JSON property allowOriginRegexes
6400 6401 6402 |
# File 'lib/google/apis/compute_beta/classes.rb', line 6400 def allow_origin_regexes @allow_origin_regexes end |
#allow_origins ⇒ Array<String>
Specifies the list of origins that is allowed to do CORS requests. An origin
is allowed if it matches either an item in allowOrigins or an item in
allowOriginRegexes.
Corresponds to the JSON property allowOrigins
6407 6408 6409 |
# File 'lib/google/apis/compute_beta/classes.rb', line 6407 def allow_origins @allow_origins end |
#disabled ⇒ Boolean Also known as: disabled?
If true, disables the CORS policy. The default value is false, which indicates
that the CORS policy is in effect.
Corresponds to the JSON property disabled
6413 6414 6415 |
# File 'lib/google/apis/compute_beta/classes.rb', line 6413 def disabled @disabled end |
#expose_headers ⇒ Array<String>
Specifies the content for the Access-Control-Expose-Headers header.
Corresponds to the JSON property exposeHeaders
6419 6420 6421 |
# File 'lib/google/apis/compute_beta/classes.rb', line 6419 def expose_headers @expose_headers end |
#max_age ⇒ Fixnum
Specifies how long results of a preflight request can be cached in seconds.
This field translates to the Access-Control-Max-Age header.
Corresponds to the JSON property maxAge
6425 6426 6427 |
# File 'lib/google/apis/compute_beta/classes.rb', line 6425 def max_age @max_age end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 |
# File 'lib/google/apis/compute_beta/classes.rb', line 6432 def update!(**args) @allow_credentials = args[:allow_credentials] if args.key?(:allow_credentials) @allow_headers = args[:allow_headers] if args.key?(:allow_headers) @allow_methods = args[:allow_methods] if args.key?(:allow_methods) @allow_origin_regexes = args[:allow_origin_regexes] if args.key?(:allow_origin_regexes) @allow_origins = args[:allow_origins] if args.key?(:allow_origins) @disabled = args[:disabled] if args.key?(:disabled) @expose_headers = args[:expose_headers] if args.key?(:expose_headers) @max_age = args[:max_age] if args.key?(:max_age) end |