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
| 259 260 261 | # File 'generated/google/apis/storage_v1/classes.rb', line 259 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
| 245 246 247 | # File 'generated/google/apis/storage_v1/classes.rb', line 245 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
| 238 239 240 | # File 'generated/google/apis/storage_v1/classes.rb', line 238 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
| 251 252 253 | # File 'generated/google/apis/storage_v1/classes.rb', line 251 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
| 257 258 259 | # File 'generated/google/apis/storage_v1/classes.rb', line 257 def response_header @response_header end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 264 265 266 267 268 269 | # File 'generated/google/apis/storage_v1/classes.rb', line 264 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 |