Type Alias ActionUpdateRequest

type ActionUpdateRequest = {
    connections: {
        id: string;
        name?: string;
        ownerId?: string;
        spaceId?: string;
        spaceType?: "personal" | "shared" | "managed" | "data";
    }[];
}
Index

Properties

Properties

connections: {
    id: string;
    name?: string;
    ownerId?: string;
    spaceId?: string;
    spaceType?: "personal" | "shared" | "managed" | "data";
}[]

Type declaration

  • id: string

    Connection ID

  • Optionalname?: string

    Connection name

  • OptionalownerId?: string

    User ID to which the connection will be updated. If not present, the connection's owner wont be changed

  • OptionalspaceId?: string

    Space ID to which the connection will be updated. If not present, the connection's space wont be changed. If it is empty string, then the connection will be moved to the personal space of the user identified by ownerId (If ownerId is undefined, then the connection will be in oroginal owner's personal space)

  • OptionalspaceType?: "personal" | "shared" | "managed" | "data"

    Space type. Required when spaceId is specified