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

    Interface SecurityRuleStatus

    interface SecurityRuleStatus {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1.SecurityRuleStatus";
        destination?: RuleMatchStatus;
        direction: RuleDirection;
        effectivePriority: number;
        source?: RuleMatchStatus;
        state: SecurityRuleStatus_State;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.vpc.v1.SecurityRuleStatus"
    destination?: RuleMatchStatus

    Destination of the traffic that matched the rule.

    direction: RuleDirection

    Direction of traffic affected by the rule.

    effectivePriority: number

    Effective priority used for rule evaluation order, calculated by the system. This value is computed from the user-specified 'priority' (SecurityRuleSpec). Rules are evaluated in ascending order of effective_priority using a first-match algorithm.

    Source of the traffic that matched the rule.