@nebius/js-sdk - v0.2.54
    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

      Common resource metadata.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Common resource metadata.

            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.common.v1.ResourceMetadata"

    Contains the fully qualified protobuf type name.

    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.

    Type Declaration

    • [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.