interface RuleSpecs {
    condition: string;
    organizationId?: string;
    permissionSetNames?: string[];
    projectIds?: string[];
}

Properties

condition: string

Condition expression to evaluate.

organizationId?: string

ID of Organization the rule is scoped to.

One-of ('scope'): at most one of 'projectIds', 'organizationId' could be set.

permissionSetNames?: string[]

Names of permission sets bound to the rule.

projectIds?: string[]

List of Project IDs the rule is scoped to.

One-of ('scope'): at most one of 'projectIds', 'organizationId' could be set.