MonoCloud Management SDK
    Preparing search index...

    Interface CreateApiAccessBasicPolicyRequest

    Create Basic API Access Policy Request: Creates a basic API access policy using structured conditions.

    CreateApiAccessBasicPolicyRequest

    interface CreateApiAccessBasicPolicyRequest {
        actions?: CreateApiAccessPolicyActionsRequest;
        client_id: string;
        description?: string | null;
        enabled?: boolean;
        name: string;
        scopes?: string[];
    }
    Index

    Properties

    Action settings applied when the policy matches.

    CreateApiAccessBasicPolicyRequest

    client_id: string

    The unique identifier of the client this policy applies to.

    CreateApiAccessBasicPolicyRequest

    description?: string | null

    Description that explains the purpose of the policy.

    CreateApiAccessBasicPolicyRequest

    enabled?: boolean

    Indicates whether the policy is enabled.

    CreateApiAccessBasicPolicyRequest

    name: string

    Human-readable name for the policy.

    CreateApiAccessBasicPolicyRequest

    scopes?: string[]

    The API scopes that may be requested by the client. If empty, all scopes may be requested.

    CreateApiAccessBasicPolicyRequest