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

    Interface FileDescriptorProto

    Describes a complete .proto file.

    interface FileDescriptorProto {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "google.protobuf.FileDescriptorProto";
        dependency: string[];
        edition?: Edition;
        enumType: EnumDescriptorProto[];
        extension: FieldDescriptorProto[];
        messageType: DescriptorProto[];
        name?: string;
        optionDependency: string[];
        options?: FileOptions;
        package?: string;
        publicDependency: number[];
        service: ServiceDescriptorProto[];
        sourceCodeInfo?: SourceCodeInfo;
        syntax?: string;
        weakDependency: number[];
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Describes a complete .proto file.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Describes a complete .proto file.

            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: "google.protobuf.FileDescriptorProto"

    Contains the fully qualified protobuf type name.

    dependency: string[]

    Names of files imported by this file.

    edition?: Edition

    The edition of the proto file. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

    Contains the enum_type protobuf field.

    Contains the extension protobuf field.

    messageType: DescriptorProto[]

    All top-level definitions in this file.

    name?: string

    file name, relative to root of source tree

    optionDependency: string[]

    Names of files imported by this file purely for the purpose of providing option extensions. These are excluded from the dependency list above.

    options?: FileOptions

    Contains the options protobuf field.

    package?: string

    e.g. "foo", "foo.bar", etc.

    publicDependency: number[]

    Indexes of the public imported files in the dependency list above.

    Contains the service protobuf field.

    sourceCodeInfo?: SourceCodeInfo

    This field contains optional information about the original source code. You may safely remove this entire field without harming runtime functionality of the descriptors -- the information is needed only by development tools.

    syntax?: string

    The syntax of the proto file. The supported values are "proto2", "proto3", and "editions".

    If edition is present, this value must be "editions". WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

    weakDependency: number[]

    Indexes of the weak imported files in the dependency list. For Google-internal migration only. Do not use.