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

    Interface SecurityGroupServiceServer

    Handles server calls for the nebius.vpc.v1.SecurityGroupService service.

    interface SecurityGroupServiceServer {
        create: handleUnaryCall<CreateSecurityGroupRequest, Operation>;
        delete: handleUnaryCall<DeleteSecurityGroupRequest, Operation>;
        get: handleUnaryCall<GetSecurityGroupRequest, SecurityGroup>;
        getByName: handleUnaryCall<GetSecurityGroupByNameRequest, SecurityGroup>;
        list: handleUnaryCall<
            ListSecurityGroupsRequest,
            ListSecurityGroupsResponse,
        >;
        listByNetwork: handleUnaryCall<
            ListSecurityGroupsByNetworkRequest,
            ListSecurityGroupsResponse,
        >;
        update: handleUnaryCall<UpdateSecurityGroupRequest, Operation>;
        [name: string]: UntypedHandleCall;
    }

    Hierarchy

    • UntypedServiceImplementation
      • SecurityGroupServiceServer

    Indexable

    • [name: string]: UntypedHandleCall

      Handles server calls for the nebius.vpc.v1.SecurityGroupService service.

    Index
    create: handleUnaryCall<CreateSecurityGroupRequest, Operation>

    Handles the Create RPC.

    delete: handleUnaryCall<DeleteSecurityGroupRequest, Operation>

    Handles the Delete RPC.

    get: handleUnaryCall<GetSecurityGroupRequest, SecurityGroup>

    Handles the Get RPC.

    getByName: handleUnaryCall<GetSecurityGroupByNameRequest, SecurityGroup>

    Handles the GetByName RPC.

    Handles the List RPC.

    listByNetwork: handleUnaryCall<
        ListSecurityGroupsByNetworkRequest,
        ListSecurityGroupsResponse,
    >

    Lists security groups in a specific network.

    update: handleUnaryCall<UpdateSecurityGroupRequest, Operation>

    Handles the Update RPC.