Deleting Website Hosting Settings of a Bucket
API Description
You can use this API to delete the website hosting settings of a bucket.
Method Definition
ObsClient.deleteBucketWebsite(bucketName)
Request Parameters
|
Field |
Type |
Optional or Mandatory |
Description |
|---|---|---|---|
|
bucketName |
str |
Mandatory |
Bucket name |
Returned Results
|
Type |
Description |
|---|---|
|
SDK common result object |
Sample Code
try:
resp = obsClient.deleteBucketWebsite('bucketname')
if resp.status < 300:
print('requestId:', resp.requestId)
else:
print('errorCode:', resp.errorCode)
print('errorMessage:', resp.errorMessage)
except:
import traceback
print(traceback.format_exc())
Last Article: Obtaining Website Hosting Settings of a Bucket
Next Article: Setting the Versioning Status for a Bucket
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.