MonoCloud Management SDK
    Preparing search index...

    Interface PatchApiAccessBasicPolicyRequest

    Patch Basic API Access Policy Request: Used to partially update a basic API access policy.

    PatchApiAccessBasicPolicyRequest

    interface PatchApiAccessBasicPolicyRequest {
        actions?: PatchApiAccessPolicyActionsRequest;
        description?: string | null;
        enabled?: boolean;
        name?: string;
        scopes?: string[];
    }
    Index

    Properties

    Action settings applied when the policy fires.

    PatchApiAccessBasicPolicyRequest

    description?: string | null

    Description that explains the purpose of the policy.

    PatchApiAccessBasicPolicyRequest

    enabled?: boolean

    Indicates whether the policy is enabled.

    PatchApiAccessBasicPolicyRequest

    name?: string

    Human-readable name for the policy.

    PatchApiAccessBasicPolicyRequest

    scopes?: string[]

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

    PatchApiAccessBasicPolicyRequest