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

    Interface ServiceOptions

    Represents the google.protobuf.ServiceOptions protobuf message.

    interface ServiceOptions {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "google.protobuf.ServiceOptions";
        apiServiceName?: any;
        deprecated?: boolean;
        features?: FeatureSet;
        serviceDeprecationDetails?: DeprecationDetails;
        servicePySdk?: ServicePySDKSettings;
        uninterpretedOption: UninterpretedOption[];
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Represents the google.protobuf.ServiceOptions protobuf message.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the google.protobuf.ServiceOptions 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: "google.protobuf.ServiceOptions"

    Contains the fully qualified protobuf type name.

    apiServiceName?: any

    Contains the API service name.

    deprecated?: boolean

    Note: Field numbers 1 through 32 are reserved for Google's internal RPC framework. We apologize for hoarding these numbers to ourselves, but we were already using them long before we decided to release Protocol Buffers.

    Is this service deprecated? Depending on the target platform, this can emit Deprecated annotations for the service, or it will be completely ignored; in the very least, this is a formalization for deprecating services.

    features?: FeatureSet

    Any features defined in the specific edition. 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.

    serviceDeprecationDetails?: DeprecationDetails

    Contains the service deprecation details.

    servicePySdk?: ServicePySDKSettings

    Contains the service py SDK.

    uninterpretedOption: UninterpretedOption[]

    The parser stores options it doesn't recognize here. See above.