MonoCloud Management SDK
    Preparing search index...

    Interface ApiAccessPolicy

    API Access Policy Response: Represents an API access policy.

    ApiAccessPolicy

    interface ApiAccessPolicy {
        client_id?: string | null;
        creation_time: number;
        description?: string | null;
        enabled: boolean;
        id: string;
        is_permitted: boolean;
        last_updated: number;
        name: string;
        revision: number;
        type: PolicyTypes;
    }
    Index

    Properties

    client_id?: string | null

    The unique identifier of the client this policy applies to. Returned for basic policies; null for advanced policies.

    ApiAccessPolicy

    creation_time: number

    Specifies the creation time of the policy (in Epoch).

    ApiAccessPolicy

    description?: string | null

    Description that explains the purpose of the policy.

    ApiAccessPolicy

    enabled: boolean

    Indicates whether the policy is enabled.

    ApiAccessPolicy

    id: string

    The unique identifier of the policy.

    ApiAccessPolicy

    is_permitted: boolean

    Indicates whether the policy grants access when matched.

    ApiAccessPolicy

    last_updated: number

    Specifies the last update time of the policy (in Epoch).

    ApiAccessPolicy

    name: string

    Human-readable name for the policy.

    ApiAccessPolicy

    revision: number

    Specifies the current version of the policy. Incremented on every update.

    ApiAccessPolicy

    The policy authoring mode. Basic policies are authored using structured conditions; advanced policies are authored using Cedar policy source.

    ApiAccessPolicy