@nebius/js-sdk - v0.1.4
    Preparing search index...

    Interface QuotaAllowanceStatus

    interface QuotaAllowanceStatus {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.quotas.v1.QuotaAllowanceStatus";
        description: string;
        service: string;
        serviceDescription: string;
        state: QuotaAllowanceStatus_State;
        unit: string;
        usage: Long;
        usagePercentage: string;
        usageState: QuotaAllowanceStatus_UsageState;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.quotas.v1.QuotaAllowanceStatus"
    description: string

    Human-readable description of the quota. Example: "Total RAM across VMs".

    service: string

    Service in which the quota is allocated. Example: "mk8s".

    serviceDescription: string

    Human-readable name of the service managing the quota. Example: "Managed Kubernetes®".

    Current state of the quota.

    unit: string

    Quota unit. Example: "byte".

    usage: Long

    Current quota usage.

    usagePercentage: string

    Current quota usage as a percentage. Values range from 0.0 to 1.0, representing 0% to 100%. Values can exceed 1.0 if usage exceeds the limit. Example: "0.12".

    Current state of the quota usage.