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