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

    Interface BucketStatus

    Represents the nebius.storage.v1.BucketStatus protobuf message.

    interface BucketStatus {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.storage.v1.BucketStatus";
        anonymousAccessEnabled: boolean;
        counters: BucketCounters[];
        deletedAt?: Dayjs;
        domainName: string;
        insecureEndpoint?: InsecureEndpoint;
        purgeAt?: Dayjs;
        region: string;
        state: BucketStatus_State;
        suspensionState: BucketStatus_SuspensionState;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Represents the nebius.storage.v1.BucketStatus protobuf message.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the nebius.storage.v1.BucketStatus protobuf message.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.storage.v1.BucketStatus"

    Contains the fully qualified protobuf type name.

    anonymousAccessEnabled: boolean

    Indicator flag showing whether the bucket has any BucketPolicy rule that grants anonymous access to any object, prefix, or the entire bucket.

    counters: BucketCounters[]

    Contains the counters protobuf field.

    deletedAt?: Dayjs

    The time when the bucket was deleted (or scheduled for deletion). It resets to null if the bucket is undeleted.

    domainName: string

    The domain of the endpoint where the bucket can be accessed. It omits the scheme (HTTPS) and the port (443) and contains only the FQDN address.

    insecureEndpoint?: InsecureEndpoint

    Insecure endpoint mode shows whether plain HTTP (without TLS) is forbidden, allowed for traffic from the same region or allowed from everywhere.

    purgeAt?: Dayjs

    The time when the bucket will be automatically purged in case it was soft-deleted.

    region: string

    The name of the region where the bucket is located for use with S3 clients, i.e. "eu-west1".

    Contains the state protobuf field.

    Contains the suspension_state protobuf field.