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 }
readonly filters?:
| {
filter?: string;
includeControlScores?: boolean;
}
| { filter?: string }
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1,"maxValue":1000}
Default: {}