const apiInstance = new Fastly.ProductObjectStorageApi();
Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
disableProductObjectStorage | DELETE /enabled-products/v1/object_storage | Disable product |
enableObjectStorage | PUT /enabled-products/v1/object_storage | Enable product |
getObjectStorage | GET /enabled-products/v1/object_storage | Get product enablement status |
disableProductObjectStorage()
Disable the Object Storage product
apiInstance.disableProductObjectStorage()
.then(() => {
console.log('API called successfully.');
})
.catch((error) => {
console.error(error);
});
This endpoint does not need any parameters.
null (empty response body)
enableObjectStorage()
Enable the Object Storage product
apiInstance.enableObjectStorage()
.then((data) => {
console.log(data, "API called successfully.");
})
.catch((error) => {
console.error(error);
});
This endpoint does not need any parameters.
ObjectStorageResponseBodyEnable
getObjectStorage()
Get the enablement status of the Object Storage product
apiInstance.getObjectStorage()
.then((data) => {
console.log(data, "API called successfully.");
})
.catch((error) => {
console.error(error);
});
This endpoint does not need any parameters.