Type Alias IPPolicyListItem

type IPPolicyListItem = {
    allowedIps?: string[];
    createdAt?: string;
    createdBy?: string;
    deletable?: boolean;
    editable?: boolean;
    enabled?: boolean;
    id: string;
    name?: string;
    tenantId?: string;
    toggleable?: boolean;
    updatedAt?: string;
    updatedBy?: string;
}
Index

Properties

allowedIps?: string[]

An array of allowed IP addresses.

createdAt?: string

The timestamp for when the resource was created.

createdBy?: string

The user ID of the user who created the IP policy.

deletable?: boolean

Indicates whether the IP policy can be deleted.

editable?: boolean

Indicates whether the IP policy can be updated.

enabled?: boolean

Indicates whether the IP policy is enabled.

id: string

The unique identifier for the IP policy.

name?: string

The descriptive name for the IP policy.

tenantId?: string

The tenant unique identifier associated with the given IP policy.

toggleable?: boolean

Indicates whether the IP policy can be enabled/disabled.

updatedAt?: string

The timestamp for when the resource was last updated.

updatedBy?: string

The user ID of the user who last updated the IP policy.