@akamai/openapi-ts
    Preparing search index...

    Type Alias PostObjectStorageSslData

    type PostObjectStorageSslData = {
        body?: { certificate: string; private_key: string };
        path: { bucket: string; regionId: string };
        query?: never;
        url: "object-storage/buckets/{regionId}/{bucket}/ssl";
    }
    Index

    Properties

    Properties

    body?: { certificate: string; private_key: string }

    Upload a TLS/SSL certificate and private key to be served when you visit your Object Storage bucket via HTTPS.

    Type Declaration

    • certificate: string

      Your Base64 encoded and PEM formatted SSL certificate.

      Line breaks must be represented as \n in the string for requests (but not when using the Linode CLI)

    • private_key: string

      The private key associated with this TLS/SSL certificate.

      Line breaks must be represented as \n in the string for requests (but not when using the Linode CLI)

    path: { bucket: string; regionId: string }

    Type Declaration

    • bucket: string

      The bucket name.

    • regionId: string

      Identifies a region where this bucket lives.

      📘

      You can use a clusterId in place of regionId in requests for buckets that you created using the legacy version of the API. Run List clusters to see each cluster id.

    query?: never
    url: "object-storage/buckets/{regionId}/{bucket}/ssl"