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

    Interface ResourceMetadata

    Common resource metadata.

    interface ResourceMetadata {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.common.v1.ResourceMetadata";
        createdAt?: Dayjs;
        id: string;
        labels: { [key: string]: string };
        name: string;
        parentId: string;
        resourceVersion: Long;
        updatedAt?: Dayjs;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.common.v1.ResourceMetadata"
    createdAt?: Dayjs

    Timestamp indicating when the resource was created.

    id: string

    Identifier for the resource, unique for its resource type.

    labels: { [key: string]: string }

    Labels associated with the resource.

    name: string

    Human readable name for the resource.

    parentId: string

    Identifier of the parent resource to which the resource belongs.

    resourceVersion: Long

    Version of the resource for safe concurrent modifications and consistent reads. Positive and monotonically increases on each resource spec change (but not on each change of the resource's container(s) or status). Service allows zero value or current.

    updatedAt?: Dayjs

    Timestamp indicating when the resource was last updated.