Class: Google::Apis::StorageV1::Bucket::CorsConfiguration
- Inherits:
-
Object
- Object
- Google::Apis::StorageV1::Bucket::CorsConfiguration
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/storage_v1/classes.rb,
generated/google/apis/storage_v1/representations.rb,
generated/google/apis/storage_v1/representations.rb
Instance Attribute Summary collapse
-
#http_method ⇒ Array<String>
The list of HTTP methods on which to include CORS response headers, (GET, OPTIONS, POST, etc) Note: "*" is permitted in the list of methods, and means " any method".
-
#max_age_seconds ⇒ Fixnum
The value, in seconds, to return in the Access-Control-Max-Age header used in preflight responses.
-
#origin ⇒ Array<String>
The list of Origins eligible to receive CORS response headers.
-
#response_header ⇒ Array<String>
The list of HTTP headers other than the simple response headers to give permission for the user-agent to share across domains.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CorsConfiguration
constructor
A new instance of CorsConfiguration.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CorsConfiguration
Returns a new instance of CorsConfiguration
260 261 262 |
# File 'generated/google/apis/storage_v1/classes.rb', line 260 def initialize(**args) update!(**args) end |
Instance Attribute Details
#http_method ⇒ Array<String>
The list of HTTP methods on which to include CORS response headers, (GET,
OPTIONS, POST, etc) Note: "*" is permitted in the list of methods, and means "
any method".
Corresponds to the JSON property method
246 247 248 |
# File 'generated/google/apis/storage_v1/classes.rb', line 246 def http_method @http_method end |
#max_age_seconds ⇒ Fixnum
The value, in seconds, to return in the Access-Control-Max-Age header used in
preflight responses.
Corresponds to the JSON property maxAgeSeconds
239 240 241 |
# File 'generated/google/apis/storage_v1/classes.rb', line 239 def max_age_seconds @max_age_seconds end |
#origin ⇒ Array<String>
The list of Origins eligible to receive CORS response headers. Note: "*" is
permitted in the list of origins, and means "any Origin".
Corresponds to the JSON property origin
252 253 254 |
# File 'generated/google/apis/storage_v1/classes.rb', line 252 def origin @origin end |
#response_header ⇒ Array<String>
The list of HTTP headers other than the simple response headers to give
permission for the user-agent to share across domains.
Corresponds to the JSON property responseHeader
258 259 260 |
# File 'generated/google/apis/storage_v1/classes.rb', line 258 def response_header @response_header end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
265 266 267 268 269 270 |
# File 'generated/google/apis/storage_v1/classes.rb', line 265 def update!(**args) @max_age_seconds = args[:max_age_seconds] if args.key?(:max_age_seconds) @http_method = args[:http_method] if args.key?(:http_method) @origin = args[:origin] if args.key?(:origin) @response_header = args[:response_header] if args.key?(:response_header) end |