Interface MicrosoftGraphSecurityNodeParameters

Source
interface MicrosoftGraphSecurityNodeParameters {
    filters?:
        | {
            filter?: string;
            includeControlScores?: boolean;
        }
        | { filter?: string };
    limit?: number;
    operation?: "get" | "getAll" | "update";
    provider?: string;
    resource?: "secureScore" | "secureScoreControlProfile";
    returnAll?: boolean;
    secureScoreControlProfileId?: string;
    secureScoreId?: string;
    updateFields?: {
        state?: "Ignored" | "Default" | "ThirdParty";
    };
    vendor?: string;
}

Properties§

Source§

readonly filters?:
    | {
        filter?: string;
        includeControlScores?: boolean;
    }
    | { filter?: string }

Default: {}

Source§

readonly limit?: number

Max number of results to return Default: 50 Type options: {"minValue":1,"maxValue":1000}

Source§

readonly operation?: "get" | "getAll" | "update"

Default: "get"

Source§

readonly provider?: string

Name of the provider of the security product or service

Source§

readonly resource?: "secureScore" | "secureScoreControlProfile"

Default: "secureScore"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly secureScoreControlProfileId?: string

ID of the secure score control profile to retrieve

Source§

readonly secureScoreId?: string

ID of the secure score to retrieve

Source§

readonly updateFields?: { state?: "Ignored" | "Default" | "ThirdParty" }

Default: {}

Source§

readonly vendor?: string

Name of the vendor of the security product or service