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§
§§§§§§§§§
readonly filters?:
| {
filter?: string;
includeControlScores?: boolean;
}
| { filter?: string }§
readonly limit?: numberMax number of results to return Default: 50 Type options: {"minValue":1,"maxValue":1000}
readonly operation?: "get" | "getAll" | "update"Default: "get"
readonly provider?: stringName of the provider of the security product or service
readonly resource?: "secureScore" | "secureScoreControlProfile"Default: "secureScore"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly secure Score Control Profile Id?: stringID of the secure score control profile to retrieve
readonly secure Score Id?: stringID of the secure score to retrieve
readonly update Fields?: { ... }Default: {}
readonly vendor?: stringName of the vendor of the security product or service
Default: {}