@microsoft/msgraph-sdk 1.0.0-preview.74 → 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 +1811 -70
- package/models/index.d.ts.map +1 -1
- package/models/index.js +2331 -11
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +349 -1
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +373 -1
- 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.
|
|
@@ -667,6 +709,18 @@ export interface ContainerRegistryEvidence extends AlertEvidence, Parsable {
|
|
|
667
709
|
registry?: string | null;
|
|
668
710
|
}
|
|
669
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>);
|
|
670
724
|
/**
|
|
671
725
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
672
726
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1381,6 +1435,18 @@ export declare function createHuntingRowResultFromDiscriminatorValue(parseNode:
|
|
|
1381
1435
|
* @returns {Hyperlink}
|
|
1382
1436
|
*/
|
|
1383
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>);
|
|
1384
1450
|
/**
|
|
1385
1451
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1386
1452
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1435,6 +1501,12 @@ export declare function createIntelligenceProfileIndicatorCollectionResponseFrom
|
|
|
1435
1501
|
* @returns {IntelligenceProfileIndicator}
|
|
1436
1502
|
*/
|
|
1437
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>);
|
|
1438
1510
|
/**
|
|
1439
1511
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1440
1512
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1693,6 +1765,24 @@ export declare function createSearchFromDiscriminatorValue(parseNode: ParseNode
|
|
|
1693
1765
|
* @returns {SecurityGroupEvidence}
|
|
1694
1766
|
*/
|
|
1695
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>);
|
|
1696
1786
|
/**
|
|
1697
1787
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1698
1788
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1867,6 +1957,12 @@ export declare function createUserAccountFromDiscriminatorValue(parseNode: Parse
|
|
|
1867
1957
|
* @returns {UserEvidence}
|
|
1868
1958
|
*/
|
|
1869
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>);
|
|
1870
1966
|
/**
|
|
1871
1967
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1872
1968
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -2069,6 +2165,18 @@ export interface DeploymentAccessKeyType extends AdditionalDataHolder, BackedMod
|
|
|
2069
2165
|
odataType?: string | null;
|
|
2070
2166
|
}
|
|
2071
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>;
|
|
2072
2180
|
/**
|
|
2073
2181
|
* The deserialization information for the current model
|
|
2074
2182
|
* @param Alert The instance to deserialize into.
|
|
@@ -2783,6 +2891,18 @@ export declare function deserializeIntoHuntingRowResult(huntingRowResult?: Parti
|
|
|
2783
2891
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2784
2892
|
*/
|
|
2785
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>;
|
|
2786
2906
|
/**
|
|
2787
2907
|
* The deserialization information for the current model
|
|
2788
2908
|
* @param IdentityContainer The instance to deserialize into.
|
|
@@ -2837,6 +2957,12 @@ export declare function deserializeIntoIntelligenceProfileIndicator(intelligence
|
|
|
2837
2957
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2838
2958
|
*/
|
|
2839
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>;
|
|
2840
2966
|
/**
|
|
2841
2967
|
* The deserialization information for the current model
|
|
2842
2968
|
* @param IoTDeviceEvidence The instance to deserialize into.
|
|
@@ -3101,6 +3227,24 @@ export declare function deserializeIntoSecurityGroupEvidence(securityGroupEviden
|
|
|
3101
3227
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3102
3228
|
*/
|
|
3103
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>;
|
|
3104
3248
|
/**
|
|
3105
3249
|
* The deserialization information for the current model
|
|
3106
3250
|
* @param SensorCollectionResponse The instance to deserialize into.
|
|
@@ -3257,6 +3401,12 @@ export declare function deserializeIntoUnifiedGroupSourceCollectionResponse(unif
|
|
|
3257
3401
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3258
3402
|
*/
|
|
3259
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>;
|
|
3260
3410
|
/**
|
|
3261
3411
|
* The deserialization information for the current model
|
|
3262
3412
|
* @param UserAccount The instance to deserialize into.
|
|
@@ -3676,7 +3826,7 @@ export interface EdiscoveryExportOperation extends CaseOperation, Parsable {
|
|
|
3676
3826
|
*/
|
|
3677
3827
|
exportOptions?: ExportOptions[] | null;
|
|
3678
3828
|
/**
|
|
3679
|
-
* 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.
|
|
3680
3830
|
*/
|
|
3681
3831
|
exportStructure?: ExportFileStructure | null;
|
|
3682
3832
|
/**
|
|
@@ -4809,16 +4959,61 @@ export interface Hyperlink extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
4809
4959
|
*/
|
|
4810
4960
|
url?: string | null;
|
|
4811
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
|
+
}
|
|
4812
4994
|
export interface IdentityContainer extends Entity, Parsable {
|
|
4813
4995
|
/**
|
|
4814
4996
|
* Represents potential issues identified by Microsoft Defender for Identity within a customer's Microsoft Defender for Identity configuration.
|
|
4815
4997
|
*/
|
|
4816
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;
|
|
4817
5011
|
/**
|
|
4818
5012
|
* Represents a customer's Microsoft Defender for Identity sensors.
|
|
4819
5013
|
*/
|
|
4820
5014
|
sensors?: Sensor[] | null;
|
|
4821
5015
|
}
|
|
5016
|
+
export type IdentityProvider = (typeof IdentityProviderObject)[keyof typeof IdentityProviderObject];
|
|
4822
5017
|
export interface Incident extends Entity, Parsable {
|
|
4823
5018
|
/**
|
|
4824
5019
|
* The list of related alerts. Supports $expand.
|
|
@@ -4999,6 +5194,32 @@ export interface IntelligenceProfileIndicatorCollectionResponse extends BaseColl
|
|
|
4999
5194
|
}
|
|
5000
5195
|
export type IntelligenceProfileKind = (typeof IntelligenceProfileKindObject)[keyof typeof IntelligenceProfileKindObject];
|
|
5001
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
|
+
}
|
|
5002
5223
|
export interface IoTDeviceEvidence extends AlertEvidence, Parsable {
|
|
5003
5224
|
/**
|
|
5004
5225
|
* The device ID.
|
|
@@ -6079,6 +6300,33 @@ export interface Sensor extends Entity, Parsable {
|
|
|
6079
6300
|
*/
|
|
6080
6301
|
version?: string | null;
|
|
6081
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
|
+
}
|
|
6082
6330
|
export interface SensorCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
6083
6331
|
/**
|
|
6084
6332
|
* The value property
|
|
@@ -6131,6 +6379,20 @@ export interface SensorSettings extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
6131
6379
|
odataType?: string | null;
|
|
6132
6380
|
}
|
|
6133
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;
|
|
6134
6396
|
/**
|
|
6135
6397
|
* Serializes information the current object
|
|
6136
6398
|
* @param Alert The instance to serialize from.
|
|
@@ -6964,6 +7226,20 @@ export declare function serializeHuntingRowResult(writer: SerializationWriter, h
|
|
|
6964
7226
|
* @param writer Serialization writer to use to serialize this model
|
|
6965
7227
|
*/
|
|
6966
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;
|
|
6967
7243
|
/**
|
|
6968
7244
|
* Serializes information the current object
|
|
6969
7245
|
* @param IdentityContainer The instance to serialize from.
|
|
@@ -7027,6 +7303,13 @@ export declare function serializeIntelligenceProfileIndicator(writer: Serializat
|
|
|
7027
7303
|
* @param writer Serialization writer to use to serialize this model
|
|
7028
7304
|
*/
|
|
7029
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;
|
|
7030
7313
|
/**
|
|
7031
7314
|
* Serializes information the current object
|
|
7032
7315
|
* @param IoTDeviceEvidence The instance to serialize from.
|
|
@@ -7335,6 +7618,27 @@ export declare function serializeSecurityGroupEvidence(writer: SerializationWrit
|
|
|
7335
7618
|
* @param writer Serialization writer to use to serialize this model
|
|
7336
7619
|
*/
|
|
7337
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;
|
|
7338
7642
|
/**
|
|
7339
7643
|
* Serializes information the current object
|
|
7340
7644
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -7517,6 +7821,13 @@ export declare function serializeUnifiedGroupSourceCollectionResponse(writer: Se
|
|
|
7517
7821
|
* @param writer Serialization writer to use to serialize this model
|
|
7518
7822
|
*/
|
|
7519
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;
|
|
7520
7831
|
/**
|
|
7521
7832
|
* Serializes information the current object
|
|
7522
7833
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -8117,6 +8428,16 @@ export interface UrlEvidence extends AlertEvidence, Parsable {
|
|
|
8117
8428
|
*/
|
|
8118
8429
|
url?: string | null;
|
|
8119
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
|
+
}
|
|
8120
8441
|
export interface UserAccount extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8121
8442
|
/**
|
|
8122
8443
|
* The displayed name of the user account.
|
|
@@ -8462,6 +8783,15 @@ export declare const ActionAfterRetentionPeriodObject: {
|
|
|
8462
8783
|
readonly Relabel: "relabel";
|
|
8463
8784
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8464
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
|
+
};
|
|
8465
8795
|
export declare const AdditionalDataOptionsObject: {
|
|
8466
8796
|
readonly AllVersions: "allVersions";
|
|
8467
8797
|
readonly LinkedFiles: "linkedFiles";
|
|
@@ -8490,6 +8820,13 @@ export declare const AdditionalOptionsObject: {
|
|
|
8490
8820
|
readonly SplitSource: "splitSource";
|
|
8491
8821
|
readonly IncludeReport: "includeReport";
|
|
8492
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
|
+
};
|
|
8493
8830
|
export declare const AlertClassificationObject: {
|
|
8494
8831
|
readonly Unknown: "unknown";
|
|
8495
8832
|
readonly FalsePositive: "falsePositive";
|
|
@@ -8867,6 +9204,12 @@ export declare const HostReputationRuleSeverityObject: {
|
|
|
8867
9204
|
readonly High: "high";
|
|
8868
9205
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8869
9206
|
};
|
|
9207
|
+
export declare const IdentityProviderObject: {
|
|
9208
|
+
readonly EntraID: "entraID";
|
|
9209
|
+
readonly ActiveDirectory: "activeDirectory";
|
|
9210
|
+
readonly Okta: "okta";
|
|
9211
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
9212
|
+
};
|
|
8870
9213
|
export declare const IncidentStatusObject: {
|
|
8871
9214
|
readonly Active: "active";
|
|
8872
9215
|
readonly Resolved: "resolved";
|
|
@@ -8982,6 +9325,11 @@ export declare const ReviewSetSettingsObject: {
|
|
|
8982
9325
|
readonly DisableGrouping: "disableGrouping";
|
|
8983
9326
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8984
9327
|
};
|
|
9328
|
+
export declare const SensorCandidateActivationModeObject: {
|
|
9329
|
+
readonly Manual: "manual";
|
|
9330
|
+
readonly Automated: "automated";
|
|
9331
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
9332
|
+
};
|
|
8985
9333
|
export declare const SensorHealthStatusObject: {
|
|
8986
9334
|
readonly Healthy: "healthy";
|
|
8987
9335
|
readonly NotHealthyLow: "notHealthyLow";
|