@microsoft/msgraph-sdk 1.0.0-preview.73 → 1.0.0-preview.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/models/externalConnectors/index.d.ts +1 -1
- package/models/identityGovernance/index.d.ts +192 -1
- package/models/identityGovernance/index.d.ts.map +1 -1
- package/models/identityGovernance/index.js +251 -2
- package/models/identityGovernance/index.js.map +1 -1
- package/models/index.d.ts +2525 -78
- package/models/index.d.ts.map +1 -1
- package/models/index.js +3165 -56
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +375 -1
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +396 -2
- package/models/security/index.js.map +1 -1
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,8 +1,50 @@
|
|
|
1
1
|
import { type BaseCollectionPaginationCountResponse, type Entity, type Group, type IdentitySet, type PhysicalAddress, type PublicError, type ResultInfo, type Site } from '../index.js';
|
|
2
2
|
import { type AdditionalDataHolder, type BackedModel, type Duration, type Guid, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions';
|
|
3
|
+
export interface Account extends AdditionalDataHolder, BackedModel, Parsable {
|
|
4
|
+
/**
|
|
5
|
+
* List of the type of action. The possible values are: disable, enable, forcePasswordReset, revokeAllSessions, requireUserToSignInAgain, markUserAsCompromised, unknownFutureValue.
|
|
6
|
+
*/
|
|
7
|
+
actions?: Action[] | null;
|
|
8
|
+
/**
|
|
9
|
+
* Stores model information.
|
|
10
|
+
*/
|
|
11
|
+
backingStoreEnabled?: boolean | null;
|
|
12
|
+
/**
|
|
13
|
+
* The account ID.
|
|
14
|
+
*/
|
|
15
|
+
identifier?: string | null;
|
|
16
|
+
/**
|
|
17
|
+
* The identityProvider property
|
|
18
|
+
*/
|
|
19
|
+
identityProvider?: IdentityProvider | null;
|
|
20
|
+
/**
|
|
21
|
+
* The OdataType property
|
|
22
|
+
*/
|
|
23
|
+
odataType?: string | null;
|
|
24
|
+
}
|
|
25
|
+
export type Action = (typeof ActionObject)[keyof typeof ActionObject];
|
|
3
26
|
export type ActionAfterRetentionPeriod = (typeof ActionAfterRetentionPeriodObject)[keyof typeof ActionAfterRetentionPeriodObject];
|
|
4
27
|
export type AdditionalDataOptions = (typeof AdditionalDataOptionsObject)[keyof typeof AdditionalDataOptionsObject];
|
|
5
28
|
export type AdditionalOptions = (typeof AdditionalOptionsObject)[keyof typeof AdditionalOptionsObject];
|
|
29
|
+
export interface AiAgentEvidence extends AlertEvidence, Parsable {
|
|
30
|
+
/**
|
|
31
|
+
* The unique identifier for the AI agent.
|
|
32
|
+
*/
|
|
33
|
+
agentId?: string | null;
|
|
34
|
+
/**
|
|
35
|
+
* The display name for the AI agent.
|
|
36
|
+
*/
|
|
37
|
+
agentName?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
* Type of the platform the agent runs on. Possible values are: unknown, azureAIFoundry, copilotStudio, copilot, unknownFutureValue.
|
|
40
|
+
*/
|
|
41
|
+
hostingPlatformType?: AiAgentPlatform | null;
|
|
42
|
+
/**
|
|
43
|
+
* The instructions of the agent.
|
|
44
|
+
*/
|
|
45
|
+
instructions?: string | null;
|
|
46
|
+
}
|
|
47
|
+
export type AiAgentPlatform = (typeof AiAgentPlatformObject)[keyof typeof AiAgentPlatformObject];
|
|
6
48
|
export interface Alert extends Entity, Parsable {
|
|
7
49
|
/**
|
|
8
50
|
* The adversary or activity group that is associated with this alert.
|
|
@@ -76,6 +118,10 @@ export interface Alert extends Entity, Parsable {
|
|
|
76
118
|
* URL for the incident page in the Microsoft 365 Defender portal.
|
|
77
119
|
*/
|
|
78
120
|
incidentWebUrl?: string | null;
|
|
121
|
+
/**
|
|
122
|
+
* Information on the current status of the investigation. Possible values are: unknown, terminated, successfullyRemediated, benign, failed, partiallyRemediated, running, pendingApproval, pendingResource, queued, innerFailure, preexistingAlert, unsupportedOs, unsupportedAlertType, suppressedAlert, partiallyInvestigated, terminatedByUser, terminatedBySystem, unknownFutureValue.
|
|
123
|
+
*/
|
|
124
|
+
investigationState?: InvestigationState | null;
|
|
79
125
|
/**
|
|
80
126
|
* The oldest activity associated with the alert.
|
|
81
127
|
*/
|
|
@@ -663,6 +709,18 @@ export interface ContainerRegistryEvidence extends AlertEvidence, Parsable {
|
|
|
663
709
|
registry?: string | null;
|
|
664
710
|
}
|
|
665
711
|
export type ContentFormat = (typeof ContentFormatObject)[keyof typeof ContentFormatObject];
|
|
712
|
+
/**
|
|
713
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
714
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
715
|
+
* @returns {Account}
|
|
716
|
+
*/
|
|
717
|
+
export declare function createAccountFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
718
|
+
/**
|
|
719
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
720
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
721
|
+
* @returns {AiAgentEvidence}
|
|
722
|
+
*/
|
|
723
|
+
export declare function createAiAgentEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
666
724
|
/**
|
|
667
725
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
668
726
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1377,6 +1435,18 @@ export declare function createHuntingRowResultFromDiscriminatorValue(parseNode:
|
|
|
1377
1435
|
* @returns {Hyperlink}
|
|
1378
1436
|
*/
|
|
1379
1437
|
export declare function createHyperlinkFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1438
|
+
/**
|
|
1439
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1440
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1441
|
+
* @returns {IdentityAccountsCollectionResponse}
|
|
1442
|
+
*/
|
|
1443
|
+
export declare function createIdentityAccountsCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1444
|
+
/**
|
|
1445
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1446
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1447
|
+
* @returns {IdentityAccounts}
|
|
1448
|
+
*/
|
|
1449
|
+
export declare function createIdentityAccountsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1380
1450
|
/**
|
|
1381
1451
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1382
1452
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1431,6 +1501,12 @@ export declare function createIntelligenceProfileIndicatorCollectionResponseFrom
|
|
|
1431
1501
|
* @returns {IntelligenceProfileIndicator}
|
|
1432
1502
|
*/
|
|
1433
1503
|
export declare function createIntelligenceProfileIndicatorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1504
|
+
/**
|
|
1505
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1506
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1507
|
+
* @returns {InvokeActionResult}
|
|
1508
|
+
*/
|
|
1509
|
+
export declare function createInvokeActionResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1434
1510
|
/**
|
|
1435
1511
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1436
1512
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1689,6 +1765,24 @@ export declare function createSearchFromDiscriminatorValue(parseNode: ParseNode
|
|
|
1689
1765
|
* @returns {SecurityGroupEvidence}
|
|
1690
1766
|
*/
|
|
1691
1767
|
export declare function createSecurityGroupEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1768
|
+
/**
|
|
1769
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1770
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1771
|
+
* @returns {SensorCandidateActivationConfiguration}
|
|
1772
|
+
*/
|
|
1773
|
+
export declare function createSensorCandidateActivationConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1774
|
+
/**
|
|
1775
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1776
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1777
|
+
* @returns {SensorCandidateCollectionResponse}
|
|
1778
|
+
*/
|
|
1779
|
+
export declare function createSensorCandidateCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1780
|
+
/**
|
|
1781
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1782
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1783
|
+
* @returns {SensorCandidate}
|
|
1784
|
+
*/
|
|
1785
|
+
export declare function createSensorCandidateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1692
1786
|
/**
|
|
1693
1787
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1694
1788
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1863,6 +1957,12 @@ export declare function createUserAccountFromDiscriminatorValue(parseNode: Parse
|
|
|
1863
1957
|
* @returns {UserEvidence}
|
|
1864
1958
|
*/
|
|
1865
1959
|
export declare function createUserEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1960
|
+
/**
|
|
1961
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1962
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1963
|
+
* @returns {User}
|
|
1964
|
+
*/
|
|
1965
|
+
export declare function createUserFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1866
1966
|
/**
|
|
1867
1967
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1868
1968
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -2065,6 +2165,18 @@ export interface DeploymentAccessKeyType extends AdditionalDataHolder, BackedMod
|
|
|
2065
2165
|
odataType?: string | null;
|
|
2066
2166
|
}
|
|
2067
2167
|
export type DeploymentStatus = (typeof DeploymentStatusObject)[keyof typeof DeploymentStatusObject];
|
|
2168
|
+
/**
|
|
2169
|
+
* The deserialization information for the current model
|
|
2170
|
+
* @param Account The instance to deserialize into.
|
|
2171
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2172
|
+
*/
|
|
2173
|
+
export declare function deserializeIntoAccount(account?: Partial<Account> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2174
|
+
/**
|
|
2175
|
+
* The deserialization information for the current model
|
|
2176
|
+
* @param AiAgentEvidence The instance to deserialize into.
|
|
2177
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2178
|
+
*/
|
|
2179
|
+
export declare function deserializeIntoAiAgentEvidence(aiAgentEvidence?: Partial<AiAgentEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2068
2180
|
/**
|
|
2069
2181
|
* The deserialization information for the current model
|
|
2070
2182
|
* @param Alert The instance to deserialize into.
|
|
@@ -2779,6 +2891,18 @@ export declare function deserializeIntoHuntingRowResult(huntingRowResult?: Parti
|
|
|
2779
2891
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2780
2892
|
*/
|
|
2781
2893
|
export declare function deserializeIntoHyperlink(hyperlink?: Partial<Hyperlink> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2894
|
+
/**
|
|
2895
|
+
* The deserialization information for the current model
|
|
2896
|
+
* @param IdentityAccounts The instance to deserialize into.
|
|
2897
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2898
|
+
*/
|
|
2899
|
+
export declare function deserializeIntoIdentityAccounts(identityAccounts?: Partial<IdentityAccounts> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2900
|
+
/**
|
|
2901
|
+
* The deserialization information for the current model
|
|
2902
|
+
* @param IdentityAccountsCollectionResponse The instance to deserialize into.
|
|
2903
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2904
|
+
*/
|
|
2905
|
+
export declare function deserializeIntoIdentityAccountsCollectionResponse(identityAccountsCollectionResponse?: Partial<IdentityAccountsCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2782
2906
|
/**
|
|
2783
2907
|
* The deserialization information for the current model
|
|
2784
2908
|
* @param IdentityContainer The instance to deserialize into.
|
|
@@ -2833,6 +2957,12 @@ export declare function deserializeIntoIntelligenceProfileIndicator(intelligence
|
|
|
2833
2957
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2834
2958
|
*/
|
|
2835
2959
|
export declare function deserializeIntoIntelligenceProfileIndicatorCollectionResponse(intelligenceProfileIndicatorCollectionResponse?: Partial<IntelligenceProfileIndicatorCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2960
|
+
/**
|
|
2961
|
+
* The deserialization information for the current model
|
|
2962
|
+
* @param InvokeActionResult The instance to deserialize into.
|
|
2963
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2964
|
+
*/
|
|
2965
|
+
export declare function deserializeIntoInvokeActionResult(invokeActionResult?: Partial<InvokeActionResult> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2836
2966
|
/**
|
|
2837
2967
|
* The deserialization information for the current model
|
|
2838
2968
|
* @param IoTDeviceEvidence The instance to deserialize into.
|
|
@@ -3097,6 +3227,24 @@ export declare function deserializeIntoSecurityGroupEvidence(securityGroupEviden
|
|
|
3097
3227
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3098
3228
|
*/
|
|
3099
3229
|
export declare function deserializeIntoSensor(sensor?: Partial<Sensor> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3230
|
+
/**
|
|
3231
|
+
* The deserialization information for the current model
|
|
3232
|
+
* @param SensorCandidate The instance to deserialize into.
|
|
3233
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3234
|
+
*/
|
|
3235
|
+
export declare function deserializeIntoSensorCandidate(sensorCandidate?: Partial<SensorCandidate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3236
|
+
/**
|
|
3237
|
+
* The deserialization information for the current model
|
|
3238
|
+
* @param SensorCandidateActivationConfiguration The instance to deserialize into.
|
|
3239
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3240
|
+
*/
|
|
3241
|
+
export declare function deserializeIntoSensorCandidateActivationConfiguration(sensorCandidateActivationConfiguration?: Partial<SensorCandidateActivationConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3242
|
+
/**
|
|
3243
|
+
* The deserialization information for the current model
|
|
3244
|
+
* @param SensorCandidateCollectionResponse The instance to deserialize into.
|
|
3245
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3246
|
+
*/
|
|
3247
|
+
export declare function deserializeIntoSensorCandidateCollectionResponse(sensorCandidateCollectionResponse?: Partial<SensorCandidateCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3100
3248
|
/**
|
|
3101
3249
|
* The deserialization information for the current model
|
|
3102
3250
|
* @param SensorCollectionResponse The instance to deserialize into.
|
|
@@ -3253,6 +3401,12 @@ export declare function deserializeIntoUnifiedGroupSourceCollectionResponse(unif
|
|
|
3253
3401
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3254
3402
|
*/
|
|
3255
3403
|
export declare function deserializeIntoUrlEvidence(urlEvidence?: Partial<UrlEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3404
|
+
/**
|
|
3405
|
+
* The deserialization information for the current model
|
|
3406
|
+
* @param User The instance to deserialize into.
|
|
3407
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3408
|
+
*/
|
|
3409
|
+
export declare function deserializeIntoUser(user?: Partial<User> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3256
3410
|
/**
|
|
3257
3411
|
* The deserialization information for the current model
|
|
3258
3412
|
* @param UserAccount The instance to deserialize into.
|
|
@@ -3672,7 +3826,7 @@ export interface EdiscoveryExportOperation extends CaseOperation, Parsable {
|
|
|
3672
3826
|
*/
|
|
3673
3827
|
exportOptions?: ExportOptions[] | null;
|
|
3674
3828
|
/**
|
|
3675
|
-
* The options that specify the structure of the export. For more information, see reviewSet: export. Possible values are: none, directory (deprecated), pst, unknownFutureValue, msg. Use the Prefer: include-unknown-enum-members request header to get the following
|
|
3829
|
+
* The options that specify the structure of the export. For more information, see reviewSet: export. Possible values are: none, directory (deprecated), pst, unknownFutureValue, msg. Use the Prefer: include-unknown-enum-members request header to get the following members from this evolvable enum: msg. The directory member is deprecated. It remains in v1.0 for backward compatibility. Going forward, use either pst or msg.
|
|
3676
3830
|
*/
|
|
3677
3831
|
exportStructure?: ExportFileStructure | null;
|
|
3678
3832
|
/**
|
|
@@ -4805,16 +4959,61 @@ export interface Hyperlink extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
4805
4959
|
*/
|
|
4806
4960
|
url?: string | null;
|
|
4807
4961
|
}
|
|
4962
|
+
export interface IdentityAccounts extends Entity, Parsable {
|
|
4963
|
+
/**
|
|
4964
|
+
* Collection of accounts of the identity in different identity providers.
|
|
4965
|
+
*/
|
|
4966
|
+
accounts?: Account[] | null;
|
|
4967
|
+
/**
|
|
4968
|
+
* The cloud security identifier of the identityAccount.
|
|
4969
|
+
*/
|
|
4970
|
+
cloudSecurityIdentifier?: string | null;
|
|
4971
|
+
/**
|
|
4972
|
+
* The Active Directory display name of the identityAccount.
|
|
4973
|
+
*/
|
|
4974
|
+
displayName?: string | null;
|
|
4975
|
+
/**
|
|
4976
|
+
* The Active Directory domain name of the identityAccount.
|
|
4977
|
+
*/
|
|
4978
|
+
domain?: string | null;
|
|
4979
|
+
/**
|
|
4980
|
+
* Boolean indicating if the identityAccounts is enabled.
|
|
4981
|
+
*/
|
|
4982
|
+
isEnabled?: boolean | null;
|
|
4983
|
+
/**
|
|
4984
|
+
* The on-premises security identifier of the identityAccount.
|
|
4985
|
+
*/
|
|
4986
|
+
onPremisesSecurityIdentifier?: string | null;
|
|
4987
|
+
}
|
|
4988
|
+
export interface IdentityAccountsCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
4989
|
+
/**
|
|
4990
|
+
* The value property
|
|
4991
|
+
*/
|
|
4992
|
+
value?: IdentityAccounts[] | null;
|
|
4993
|
+
}
|
|
4808
4994
|
export interface IdentityContainer extends Entity, Parsable {
|
|
4809
4995
|
/**
|
|
4810
4996
|
* Represents potential issues identified by Microsoft Defender for Identity within a customer's Microsoft Defender for Identity configuration.
|
|
4811
4997
|
*/
|
|
4812
4998
|
healthIssues?: HealthIssue[] | null;
|
|
4999
|
+
/**
|
|
5000
|
+
* Represents an identity's details in the context of Microsoft Defender for Identity.
|
|
5001
|
+
*/
|
|
5002
|
+
identityAccounts?: IdentityAccounts[] | null;
|
|
5003
|
+
/**
|
|
5004
|
+
* The sensorCandidateActivationConfiguration property
|
|
5005
|
+
*/
|
|
5006
|
+
sensorCandidateActivationConfiguration?: SensorCandidateActivationConfiguration | null;
|
|
5007
|
+
/**
|
|
5008
|
+
* Represents Microsoft Defender for Identity sensors that are ready to be activated.
|
|
5009
|
+
*/
|
|
5010
|
+
sensorCandidates?: SensorCandidate[] | null;
|
|
4813
5011
|
/**
|
|
4814
5012
|
* Represents a customer's Microsoft Defender for Identity sensors.
|
|
4815
5013
|
*/
|
|
4816
5014
|
sensors?: Sensor[] | null;
|
|
4817
5015
|
}
|
|
5016
|
+
export type IdentityProvider = (typeof IdentityProviderObject)[keyof typeof IdentityProviderObject];
|
|
4818
5017
|
export interface Incident extends Entity, Parsable {
|
|
4819
5018
|
/**
|
|
4820
5019
|
* The list of related alerts. Supports $expand.
|
|
@@ -4994,6 +5193,33 @@ export interface IntelligenceProfileIndicatorCollectionResponse extends BaseColl
|
|
|
4994
5193
|
value?: IntelligenceProfileIndicator[] | null;
|
|
4995
5194
|
}
|
|
4996
5195
|
export type IntelligenceProfileKind = (typeof IntelligenceProfileKindObject)[keyof typeof IntelligenceProfileKindObject];
|
|
5196
|
+
export type InvestigationState = (typeof InvestigationStateObject)[keyof typeof InvestigationStateObject];
|
|
5197
|
+
export interface InvokeActionResult extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5198
|
+
/**
|
|
5199
|
+
* The account ID.
|
|
5200
|
+
*/
|
|
5201
|
+
accountId?: string | null;
|
|
5202
|
+
/**
|
|
5203
|
+
* The action property
|
|
5204
|
+
*/
|
|
5205
|
+
action?: Action | null;
|
|
5206
|
+
/**
|
|
5207
|
+
* Stores model information.
|
|
5208
|
+
*/
|
|
5209
|
+
backingStoreEnabled?: boolean | null;
|
|
5210
|
+
/**
|
|
5211
|
+
* The unique identifier for tracking the request.
|
|
5212
|
+
*/
|
|
5213
|
+
correlationId?: string | null;
|
|
5214
|
+
/**
|
|
5215
|
+
* The identityProvider property
|
|
5216
|
+
*/
|
|
5217
|
+
identityProvider?: IdentityProvider | null;
|
|
5218
|
+
/**
|
|
5219
|
+
* The OdataType property
|
|
5220
|
+
*/
|
|
5221
|
+
odataType?: string | null;
|
|
5222
|
+
}
|
|
4997
5223
|
export interface IoTDeviceEvidence extends AlertEvidence, Parsable {
|
|
4998
5224
|
/**
|
|
4999
5225
|
* The device ID.
|
|
@@ -6074,6 +6300,33 @@ export interface Sensor extends Entity, Parsable {
|
|
|
6074
6300
|
*/
|
|
6075
6301
|
version?: string | null;
|
|
6076
6302
|
}
|
|
6303
|
+
export interface SensorCandidate extends Entity, Parsable {
|
|
6304
|
+
/**
|
|
6305
|
+
* The DNS name of the computer associated with the sensor.
|
|
6306
|
+
*/
|
|
6307
|
+
computerDnsName?: string | null;
|
|
6308
|
+
/**
|
|
6309
|
+
* The date and time when the sensor was last seen.
|
|
6310
|
+
*/
|
|
6311
|
+
lastSeenDateTime?: Date | null;
|
|
6312
|
+
/**
|
|
6313
|
+
* The version of the Defender for Identity sensor client. Supports $filter (eq).
|
|
6314
|
+
*/
|
|
6315
|
+
senseClientVersion?: string | null;
|
|
6316
|
+
}
|
|
6317
|
+
export interface SensorCandidateActivationConfiguration extends Entity, Parsable {
|
|
6318
|
+
/**
|
|
6319
|
+
* The activationMode property
|
|
6320
|
+
*/
|
|
6321
|
+
activationMode?: SensorCandidateActivationMode | null;
|
|
6322
|
+
}
|
|
6323
|
+
export type SensorCandidateActivationMode = (typeof SensorCandidateActivationModeObject)[keyof typeof SensorCandidateActivationModeObject];
|
|
6324
|
+
export interface SensorCandidateCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
6325
|
+
/**
|
|
6326
|
+
* The value property
|
|
6327
|
+
*/
|
|
6328
|
+
value?: SensorCandidate[] | null;
|
|
6329
|
+
}
|
|
6077
6330
|
export interface SensorCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
6078
6331
|
/**
|
|
6079
6332
|
* The value property
|
|
@@ -6126,6 +6379,20 @@ export interface SensorSettings extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
6126
6379
|
odataType?: string | null;
|
|
6127
6380
|
}
|
|
6128
6381
|
export type SensorType = (typeof SensorTypeObject)[keyof typeof SensorTypeObject];
|
|
6382
|
+
/**
|
|
6383
|
+
* Serializes information the current object
|
|
6384
|
+
* @param Account The instance to serialize from.
|
|
6385
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
6386
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6387
|
+
*/
|
|
6388
|
+
export declare function serializeAccount(writer: SerializationWriter, account?: Partial<Account> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6389
|
+
/**
|
|
6390
|
+
* Serializes information the current object
|
|
6391
|
+
* @param AiAgentEvidence The instance to serialize from.
|
|
6392
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
6393
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6394
|
+
*/
|
|
6395
|
+
export declare function serializeAiAgentEvidence(writer: SerializationWriter, aiAgentEvidence?: Partial<AiAgentEvidence> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6129
6396
|
/**
|
|
6130
6397
|
* Serializes information the current object
|
|
6131
6398
|
* @param Alert The instance to serialize from.
|
|
@@ -6959,6 +7226,20 @@ export declare function serializeHuntingRowResult(writer: SerializationWriter, h
|
|
|
6959
7226
|
* @param writer Serialization writer to use to serialize this model
|
|
6960
7227
|
*/
|
|
6961
7228
|
export declare function serializeHyperlink(writer: SerializationWriter, hyperlink?: Partial<Hyperlink> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7229
|
+
/**
|
|
7230
|
+
* Serializes information the current object
|
|
7231
|
+
* @param IdentityAccounts The instance to serialize from.
|
|
7232
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7233
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7234
|
+
*/
|
|
7235
|
+
export declare function serializeIdentityAccounts(writer: SerializationWriter, identityAccounts?: Partial<IdentityAccounts> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7236
|
+
/**
|
|
7237
|
+
* Serializes information the current object
|
|
7238
|
+
* @param IdentityAccountsCollectionResponse The instance to serialize from.
|
|
7239
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7240
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7241
|
+
*/
|
|
7242
|
+
export declare function serializeIdentityAccountsCollectionResponse(writer: SerializationWriter, identityAccountsCollectionResponse?: Partial<IdentityAccountsCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6962
7243
|
/**
|
|
6963
7244
|
* Serializes information the current object
|
|
6964
7245
|
* @param IdentityContainer The instance to serialize from.
|
|
@@ -7022,6 +7303,13 @@ export declare function serializeIntelligenceProfileIndicator(writer: Serializat
|
|
|
7022
7303
|
* @param writer Serialization writer to use to serialize this model
|
|
7023
7304
|
*/
|
|
7024
7305
|
export declare function serializeIntelligenceProfileIndicatorCollectionResponse(writer: SerializationWriter, intelligenceProfileIndicatorCollectionResponse?: Partial<IntelligenceProfileIndicatorCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7306
|
+
/**
|
|
7307
|
+
* Serializes information the current object
|
|
7308
|
+
* @param InvokeActionResult The instance to serialize from.
|
|
7309
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7310
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7311
|
+
*/
|
|
7312
|
+
export declare function serializeInvokeActionResult(writer: SerializationWriter, invokeActionResult?: Partial<InvokeActionResult> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7025
7313
|
/**
|
|
7026
7314
|
* Serializes information the current object
|
|
7027
7315
|
* @param IoTDeviceEvidence The instance to serialize from.
|
|
@@ -7330,6 +7618,27 @@ export declare function serializeSecurityGroupEvidence(writer: SerializationWrit
|
|
|
7330
7618
|
* @param writer Serialization writer to use to serialize this model
|
|
7331
7619
|
*/
|
|
7332
7620
|
export declare function serializeSensor(writer: SerializationWriter, sensor?: Partial<Sensor> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7621
|
+
/**
|
|
7622
|
+
* Serializes information the current object
|
|
7623
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7624
|
+
* @param SensorCandidate The instance to serialize from.
|
|
7625
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7626
|
+
*/
|
|
7627
|
+
export declare function serializeSensorCandidate(writer: SerializationWriter, sensorCandidate?: Partial<SensorCandidate> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7628
|
+
/**
|
|
7629
|
+
* Serializes information the current object
|
|
7630
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7631
|
+
* @param SensorCandidateActivationConfiguration The instance to serialize from.
|
|
7632
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7633
|
+
*/
|
|
7634
|
+
export declare function serializeSensorCandidateActivationConfiguration(writer: SerializationWriter, sensorCandidateActivationConfiguration?: Partial<SensorCandidateActivationConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7635
|
+
/**
|
|
7636
|
+
* Serializes information the current object
|
|
7637
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7638
|
+
* @param SensorCandidateCollectionResponse The instance to serialize from.
|
|
7639
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7640
|
+
*/
|
|
7641
|
+
export declare function serializeSensorCandidateCollectionResponse(writer: SerializationWriter, sensorCandidateCollectionResponse?: Partial<SensorCandidateCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7333
7642
|
/**
|
|
7334
7643
|
* Serializes information the current object
|
|
7335
7644
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -7512,6 +7821,13 @@ export declare function serializeUnifiedGroupSourceCollectionResponse(writer: Se
|
|
|
7512
7821
|
* @param writer Serialization writer to use to serialize this model
|
|
7513
7822
|
*/
|
|
7514
7823
|
export declare function serializeUrlEvidence(writer: SerializationWriter, urlEvidence?: Partial<UrlEvidence> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7824
|
+
/**
|
|
7825
|
+
* Serializes information the current object
|
|
7826
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7827
|
+
* @param User The instance to serialize from.
|
|
7828
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7829
|
+
*/
|
|
7830
|
+
export declare function serializeUser(writer: SerializationWriter, user?: Partial<User> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7515
7831
|
/**
|
|
7516
7832
|
* Serializes information the current object
|
|
7517
7833
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -8112,6 +8428,16 @@ export interface UrlEvidence extends AlertEvidence, Parsable {
|
|
|
8112
8428
|
*/
|
|
8113
8429
|
url?: string | null;
|
|
8114
8430
|
}
|
|
8431
|
+
export interface User extends IdentityAccounts, Parsable {
|
|
8432
|
+
/**
|
|
8433
|
+
* Email address of the user.
|
|
8434
|
+
*/
|
|
8435
|
+
emailAddress?: string | null;
|
|
8436
|
+
/**
|
|
8437
|
+
* The user principal name.
|
|
8438
|
+
*/
|
|
8439
|
+
userPrincipalName?: string | null;
|
|
8440
|
+
}
|
|
8115
8441
|
export interface UserAccount extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8116
8442
|
/**
|
|
8117
8443
|
* The displayed name of the user account.
|
|
@@ -8457,6 +8783,15 @@ export declare const ActionAfterRetentionPeriodObject: {
|
|
|
8457
8783
|
readonly Relabel: "relabel";
|
|
8458
8784
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8459
8785
|
};
|
|
8786
|
+
export declare const ActionObject: {
|
|
8787
|
+
readonly Disable: "disable";
|
|
8788
|
+
readonly Enable: "enable";
|
|
8789
|
+
readonly ForcePasswordReset: "forcePasswordReset";
|
|
8790
|
+
readonly RevokeAllSessions: "revokeAllSessions";
|
|
8791
|
+
readonly RequireUserToSignInAgain: "requireUserToSignInAgain";
|
|
8792
|
+
readonly MarkUserAsCompromised: "markUserAsCompromised";
|
|
8793
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8794
|
+
};
|
|
8460
8795
|
export declare const AdditionalDataOptionsObject: {
|
|
8461
8796
|
readonly AllVersions: "allVersions";
|
|
8462
8797
|
readonly LinkedFiles: "linkedFiles";
|
|
@@ -8485,6 +8820,13 @@ export declare const AdditionalOptionsObject: {
|
|
|
8485
8820
|
readonly SplitSource: "splitSource";
|
|
8486
8821
|
readonly IncludeReport: "includeReport";
|
|
8487
8822
|
};
|
|
8823
|
+
export declare const AiAgentPlatformObject: {
|
|
8824
|
+
readonly Unknown: "unknown";
|
|
8825
|
+
readonly AzureAIFoundry: "azureAIFoundry";
|
|
8826
|
+
readonly CopilotStudio: "copilotStudio";
|
|
8827
|
+
readonly Copilot: "copilot";
|
|
8828
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8829
|
+
};
|
|
8488
8830
|
export declare const AlertClassificationObject: {
|
|
8489
8831
|
readonly Unknown: "unknown";
|
|
8490
8832
|
readonly FalsePositive: "falsePositive";
|
|
@@ -8862,6 +9204,12 @@ export declare const HostReputationRuleSeverityObject: {
|
|
|
8862
9204
|
readonly High: "high";
|
|
8863
9205
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8864
9206
|
};
|
|
9207
|
+
export declare const IdentityProviderObject: {
|
|
9208
|
+
readonly EntraID: "entraID";
|
|
9209
|
+
readonly ActiveDirectory: "activeDirectory";
|
|
9210
|
+
readonly Okta: "okta";
|
|
9211
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
9212
|
+
};
|
|
8865
9213
|
export declare const IncidentStatusObject: {
|
|
8866
9214
|
readonly Active: "active";
|
|
8867
9215
|
readonly Resolved: "resolved";
|
|
@@ -8881,6 +9229,27 @@ export declare const IntelligenceProfileKindObject: {
|
|
|
8881
9229
|
readonly Tool: "tool";
|
|
8882
9230
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8883
9231
|
};
|
|
9232
|
+
export declare const InvestigationStateObject: {
|
|
9233
|
+
readonly Unknown: "unknown";
|
|
9234
|
+
readonly Terminated: "terminated";
|
|
9235
|
+
readonly SuccessfullyRemediated: "successfullyRemediated";
|
|
9236
|
+
readonly Benign: "benign";
|
|
9237
|
+
readonly Failed: "failed";
|
|
9238
|
+
readonly PartiallyRemediated: "partiallyRemediated";
|
|
9239
|
+
readonly Running: "running";
|
|
9240
|
+
readonly PendingApproval: "pendingApproval";
|
|
9241
|
+
readonly PendingResource: "pendingResource";
|
|
9242
|
+
readonly Queued: "queued";
|
|
9243
|
+
readonly InnerFailure: "innerFailure";
|
|
9244
|
+
readonly PreexistingAlert: "preexistingAlert";
|
|
9245
|
+
readonly UnsupportedOs: "unsupportedOs";
|
|
9246
|
+
readonly UnsupportedAlertType: "unsupportedAlertType";
|
|
9247
|
+
readonly SuppressedAlert: "suppressedAlert";
|
|
9248
|
+
readonly PartiallyInvestigated: "partiallyInvestigated";
|
|
9249
|
+
readonly TerminatedByUser: "terminatedByUser";
|
|
9250
|
+
readonly TerminatedBySystem: "terminatedBySystem";
|
|
9251
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
9252
|
+
};
|
|
8884
9253
|
export declare const IoTDeviceImportanceTypeObject: {
|
|
8885
9254
|
readonly Unknown: "unknown";
|
|
8886
9255
|
readonly Low: "low";
|
|
@@ -8956,6 +9325,11 @@ export declare const ReviewSetSettingsObject: {
|
|
|
8956
9325
|
readonly DisableGrouping: "disableGrouping";
|
|
8957
9326
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8958
9327
|
};
|
|
9328
|
+
export declare const SensorCandidateActivationModeObject: {
|
|
9329
|
+
readonly Manual: "manual";
|
|
9330
|
+
readonly Automated: "automated";
|
|
9331
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
9332
|
+
};
|
|
8959
9333
|
export declare const SensorHealthStatusObject: {
|
|
8960
9334
|
readonly Healthy: "healthy";
|
|
8961
9335
|
readonly NotHealthyLow: "notHealthyLow";
|