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

    Interface MethodOptions

    Represents the google.protobuf.MethodOptions protobuf message.

    interface MethodOptions {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "google.protobuf.MethodOptions";
        deprecated?: boolean;
        features?: FeatureSet;
        idempotencyLevel?: MethodOptions_IdempotencyLevel;
        methodBehavior?: MethodBehavior[];
        methodDeprecationDetails?: DeprecationDetails;
        methodPySdk?: MethodPySDKSettings;
        requestFields?: SubfieldSettings[];
        uninterpretedOption: UninterpretedOption[];
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Represents the google.protobuf.MethodOptions protobuf message.

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

    Contains the fully qualified protobuf type 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 method deprecated? Depending on the target platform, this can emit Deprecated annotations for the method, or it will be completely ignored; in the very least, this is a formalization for deprecating methods.

    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.

    Contains the idempotency_level protobuf field.

    methodBehavior?: MethodBehavior[]

    Contains the method behavior.

    methodDeprecationDetails?: DeprecationDetails

    Contains the method deprecation details.

    methodPySdk?: MethodPySDKSettings

    Contains the method py SDK.

    requestFields?: SubfieldSettings[]

    Contains the request fields.

    uninterpretedOption: UninterpretedOption[]

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