Skip to content

Latest commit

 

History

History
106 lines (71 loc) · 2.08 KB

ProductObjectStorageApi.md

File metadata and controls

106 lines (71 loc) · 2.08 KB

Fastly.ProductObjectStorageApi

const apiInstance = new Fastly.ProductObjectStorageApi();

Methods

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

disableProductObjectStorage()

Disable the Object Storage product

Example

apiInstance.disableProductObjectStorage()
  .then(() => {
    console.log('API called successfully.');
  })
  .catch((error) => {
    console.error(error);
  });

Options

This endpoint does not need any parameters.

Return type

null (empty response body)

enableObjectStorage

enableObjectStorage()

Enable the Object Storage product

Example

apiInstance.enableObjectStorage()
  .then((data) => {
    console.log(data, "API called successfully.");
  })
  .catch((error) => {
    console.error(error);
  });

Options

This endpoint does not need any parameters.

Return type

ObjectStorageResponseBodyEnable

getObjectStorage

getObjectStorage()

Get the enablement status of the Object Storage product

Example

apiInstance.getObjectStorage()
  .then((data) => {
    console.log(data, "API called successfully.");
  })
  .catch((error) => {
    console.error(error);
  });

Options

This endpoint does not need any parameters.

Return type

ObjectStorageResponseBodyEnable

[Back to top] [Back to API list] [Back to README]