Class: Google::Apis::StorageV1::Bucket::Website
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::StorageV1::Bucket::Website
 
- 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
Overview
The bucket's website configuration, controlling how the service behaves when accessing bucket contents as a web site. See the Static Website Examples for more information.
Instance Attribute Summary collapse
- 
  
    
      #main_page_suffix  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    If the requested object path is missing, the service will ensure the path has a trailing '/', append this suffix, and attempt to retrieve the resulting object. 
- 
  
    
      #not_found_page  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    If the requested object path is missing, and any mainPageSuffix object is missing, if applicable, the service will return the named object from this bucket as the content for a 404 Not Found result. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Website 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Website. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Website
Returns a new instance of Website
| 550 551 552 | # File 'generated/google/apis/storage_v1/classes.rb', line 550 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#main_page_suffix ⇒ String
If the requested object path is missing, the service will ensure the path has
a trailing '/', append this suffix, and attempt to retrieve the resulting
object. This allows the creation of index.html objects to represent directory
pages.
Corresponds to the JSON property mainPageSuffix
| 541 542 543 | # File 'generated/google/apis/storage_v1/classes.rb', line 541 def main_page_suffix @main_page_suffix end | 
#not_found_page ⇒ String
If the requested object path is missing, and any mainPageSuffix object is
missing, if applicable, the service will return the named object from this
bucket as the content for a 404 Not Found result.
Corresponds to the JSON property notFoundPage
| 548 549 550 | # File 'generated/google/apis/storage_v1/classes.rb', line 548 def not_found_page @not_found_page end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 555 556 557 558 | # File 'generated/google/apis/storage_v1/classes.rb', line 555 def update!(**args) @main_page_suffix = args[:main_page_suffix] if args.key?(:main_page_suffix) @not_found_page = args[:not_found_page] if args.key?(:not_found_page) end |