@digitalocean/dots - v1.0.1
    Preparing search index...

    Interface OptionsRequestBuilder

    Builds and executes requests for operations under /v2/registry/options

    interface OptionsRequestBuilder {
        get(
            requestConfiguration?: RequestConfiguration<object>,
        ): Promise<undefined | OptionsGetResponse>;
        toGetRequestInformation(
            requestConfiguration?: RequestConfiguration<object>,
        ): RequestInformation;
        withUrl(rawUrl: string): OptionsRequestBuilder;
    }

    Hierarchy

    Index

    Methods

    • This endpoint serves to provide additional information as to which option values are available when creating a container registry.There are multiple subscription tiers available for container registry. Each tier allows a different number of image repositories to be created in your registry, and has a different amount of storage and transfer included.There are multiple regions available for container registry and controls where your data is stored.To list the available options, send a GET request to /v2/registry/options.

      Parameters

      • OptionalrequestConfiguration: RequestConfiguration<object>

        Configuration for the request such as headers, query parameters, and middleware options.

      Returns Promise<undefined | OptionsGetResponse>

      error when the service returns a 401 status code

      error when the service returns a 429 status code

      error when the service returns a 500 status code

      error when the service returns a 4XX or 5XX status code

    • This endpoint serves to provide additional information as to which option values are available when creating a container registry.There are multiple subscription tiers available for container registry. Each tier allows a different number of image repositories to be created in your registry, and has a different amount of storage and transfer included.There are multiple regions available for container registry and controls where your data is stored.To list the available options, send a GET request to /v2/registry/options.

      Parameters

      • OptionalrequestConfiguration: RequestConfiguration<object>

        Configuration for the request such as headers, query parameters, and middleware options.

      Returns RequestInformation

    • Parameters

      • rawUrl: string

      Returns OptionsRequestBuilder