MonoCloud Management SDK
    Preparing search index...

    API Resource Response: Represents a protected API resource and its access-token issuance configuration.

    ApiResource

    interface ApiResource {
        audience: string;
        creation_time: number;
        description?: string | null;
        display_name?: string | null;
        enable_identity_access: boolean;
        enabled: boolean;
        id: string;
        last_updated: number;
        require_exclusive_token: boolean;
        user_claims: string[];
    }
    Index

    Properties

    audience: string

    Audience value that will be included in issued access tokens for this API resource.

    ApiResource

    creation_time: number

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

    ApiResource

    description?: string | null

    Description that explains the purpose of the resource.

    ApiResource

    display_name?: string | null

    Human-readable display name for the resource.

    ApiResource

    enable_identity_access: boolean

    Specifies whether access tokens issued for this resource may include identity scopes, allowing them to be used with identity-related endpoints such as UserInfo.

    ScaleX subscription required to use resource isolation.

    ApiResource

    enabled: boolean

    Indicates whether the resource is enabled.

    ApiResource

    id: string

    The unique identifier of the resource.

    ApiResource

    last_updated: number

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

    ApiResource

    require_exclusive_token: boolean

    Specifies whether access tokens issued for this resource must be exclusive and not shared with other API resources.

    ScaleX subscription required to use resource isolation.

    ApiResource

    user_claims: string[]

    List of user claim types that will be embedded into access tokens issued for this API resource.

    ApiResource