@suluk/provision - v0.2.0
    Preparing search index...

    Interface ServiceOffering

    What a broker can provision (OSB Service Offering). bindable = provisioning yields credentials/config to bind.

    interface ServiceOffering {
        id: string;
        name: string;
        description: string;
        bindable: boolean;
        plans: ServicePlan[];
    }
    Index

    Properties

    id: string

    the stable broker id used in a config's service, e.g. "cloudflare-d1".

    name: string
    description: string
    bindable: boolean
    plans: ServicePlan[]