Class: Google::Apis::StorageV1::Bucket::Website

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Website

Returns a new instance of Website.



419
420
421
# File 'generated/google/apis/storage_v1/classes.rb', line 419

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#main_page_suffixString

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

Returns:

  • (String)


410
411
412
# File 'generated/google/apis/storage_v1/classes.rb', line 410

def main_page_suffix
  @main_page_suffix
end

#not_found_pageString

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

Returns:

  • (String)


417
418
419
# File 'generated/google/apis/storage_v1/classes.rb', line 417

def not_found_page
  @not_found_page
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



424
425
426
427
# File 'generated/google/apis/storage_v1/classes.rb', line 424

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