Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.27 KB

File metadata and controls

31 lines (23 loc) · 1.27 KB

BucketWebsiteConfig

Позволяет разместить статический веб-сайт используя файлы бакета

Properties

Name Type Description Notes
enabled object Включено ли сайтовое хранилище. [optional]
index_page object Страница сайта. [optional]
error_pages object Страницы ошибок. [optional]

Example

from timeweb_cloud_api.models.bucket_website_config import BucketWebsiteConfig

# TODO update the JSON string below
json = "{}"
# create an instance of BucketWebsiteConfig from a JSON string
bucket_website_config_instance = BucketWebsiteConfig.from_json(json)
# print the JSON string representation of the object
print BucketWebsiteConfig.to_json()

# convert the object into a dict
bucket_website_config_dict = bucket_website_config_instance.to_dict()
# create an instance of BucketWebsiteConfig from a dict
bucket_website_config_form_dict = bucket_website_config.from_dict(bucket_website_config_dict)

[Back to Model list] [Back to API list] [Back to README]