@microsoft/msgraph-sdk 1.0.0-preview.74 → 1.0.0-preview.77
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/callRecords/index.d.ts +4 -4
- package/models/externalConnectors/index.d.ts +4 -4
- 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 +3301 -303
- package/models/index.d.ts.map +1 -1
- package/models/index.js +3607 -20
- package/models/index.js.map +1 -1
- package/models/partners/billing/index.d.ts +1 -1
- package/models/search/index.d.ts +3 -3
- package/models/security/index.d.ts +484 -35
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +486 -3
- package/models/security/index.js.map +1 -1
- package/models/teamsAdministration/index.d.ts +256 -0
- package/models/teamsAdministration/index.d.ts.map +1 -0
- package/models/teamsAdministration/index.js +254 -0
- package/models/teamsAdministration/index.js.map +1 -0
- package/models/termStore/index.d.ts +2 -2
- package/package.json +2 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/LICENSE +0 -21
|
@@ -1,8 +1,60 @@
|
|
|
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];
|
|
27
|
+
export interface ActiveDirectoryDomainEvidence extends AlertEvidence, Parsable {
|
|
28
|
+
/**
|
|
29
|
+
* The activeDirectoryDomainName property
|
|
30
|
+
*/
|
|
31
|
+
activeDirectoryDomainName?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
* The trustedDomains property
|
|
34
|
+
*/
|
|
35
|
+
trustedDomains?: ActiveDirectoryDomainEvidence[] | null;
|
|
36
|
+
}
|
|
4
37
|
export type AdditionalDataOptions = (typeof AdditionalDataOptionsObject)[keyof typeof AdditionalDataOptionsObject];
|
|
5
38
|
export type AdditionalOptions = (typeof AdditionalOptionsObject)[keyof typeof AdditionalOptionsObject];
|
|
39
|
+
export interface AiAgentEvidence extends AlertEvidence, Parsable {
|
|
40
|
+
/**
|
|
41
|
+
* The unique identifier for the AI agent.
|
|
42
|
+
*/
|
|
43
|
+
agentId?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
* The display name for the AI agent.
|
|
46
|
+
*/
|
|
47
|
+
agentName?: string | null;
|
|
48
|
+
/**
|
|
49
|
+
* Type of the platform the agent runs on. The possible values are: unknown, azureAIFoundry, copilotStudio, copilot, unknownFutureValue.
|
|
50
|
+
*/
|
|
51
|
+
hostingPlatformType?: AiAgentPlatform | null;
|
|
52
|
+
/**
|
|
53
|
+
* The instructions of the agent.
|
|
54
|
+
*/
|
|
55
|
+
instructions?: string | null;
|
|
56
|
+
}
|
|
57
|
+
export type AiAgentPlatform = (typeof AiAgentPlatformObject)[keyof typeof AiAgentPlatformObject];
|
|
6
58
|
export interface Alert extends Entity, Parsable {
|
|
7
59
|
/**
|
|
8
60
|
* The adversary or activity group that is associated with this alert.
|
|
@@ -29,7 +81,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
29
81
|
*/
|
|
30
82
|
category?: string | null;
|
|
31
83
|
/**
|
|
32
|
-
* Specifies whether the alert represents a true threat.
|
|
84
|
+
* Specifies whether the alert represents a true threat. The possible values are: unknown, falsePositive, truePositive, informationalExpectedActivity, unknownFutureValue.
|
|
33
85
|
*/
|
|
34
86
|
classification?: AlertClassification | null;
|
|
35
87
|
/**
|
|
@@ -49,7 +101,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
49
101
|
*/
|
|
50
102
|
description?: string | null;
|
|
51
103
|
/**
|
|
52
|
-
* Detection technology or sensor that identified the notable component or activity.
|
|
104
|
+
* Detection technology or sensor that identified the notable component or activity. The possible values are: unknown, microsoftDefenderForEndpoint, antivirus, smartScreen, customTi, microsoftDefenderForOffice365, automatedInvestigation, microsoftThreatExperts, customDetection, microsoftDefenderForIdentity, cloudAppSecurity, microsoft365Defender, azureAdIdentityProtection, manual, microsoftDataLossPrevention, appGovernancePolicy, appGovernanceDetection, unknownFutureValue, microsoftDefenderForCloud, microsoftDefenderForIoT, microsoftDefenderForServers, microsoftDefenderForStorage, microsoftDefenderForDNS, microsoftDefenderForDatabases, microsoftDefenderForContainers, microsoftDefenderForNetwork, microsoftDefenderForAppService, microsoftDefenderForKeyVault, microsoftDefenderForResourceManager, microsoftDefenderForApiManagement, microsoftSentinel, nrtAlerts, scheduledAlerts, microsoftDefenderThreatIntelligenceAnalytics, builtInMl, microsoftThreatIntelligence, microsoftDefenderForAIServices, securityCopilot. Use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: microsoftDefenderForCloud, microsoftDefenderForIoT, microsoftDefenderForServers, microsoftDefenderForStorage, microsoftDefenderForDNS, microsoftDefenderForDatabases, microsoftDefenderForContainers, microsoftDefenderForNetwork, microsoftDefenderForAppService, microsoftDefenderForKeyVault, microsoftDefenderForResourceManager, microsoftDefenderForApiManagement, microsoftSentinel, nrtAlerts, scheduledAlerts, microsoftDefenderThreatIntelligenceAnalytics, builtInMl, microsoftThreatIntelligence, microsoftDefenderForAIServices, securityCopilot.
|
|
53
105
|
*/
|
|
54
106
|
detectionSource?: DetectionSource | null;
|
|
55
107
|
/**
|
|
@@ -57,7 +109,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
57
109
|
*/
|
|
58
110
|
detectorId?: string | null;
|
|
59
111
|
/**
|
|
60
|
-
* Specifies the result of the investigation, whether the alert represents a true attack and if so, the nature of the attack.
|
|
112
|
+
* Specifies the result of the investigation, whether the alert represents a true attack and if so, the nature of the attack. The possible values are: unknown, apt, malware, securityPersonnel, securityTesting, unwantedSoftware, other, multiStagedAttack, compromisedAccount, phishing, maliciousUserActivity, notMalicious, notEnoughDataToValidate, confirmedUserActivity, lineOfBusinessApplication, unknownFutureValue.
|
|
61
113
|
*/
|
|
62
114
|
determination?: AlertDetermination | null;
|
|
63
115
|
/**
|
|
@@ -77,7 +129,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
77
129
|
*/
|
|
78
130
|
incidentWebUrl?: string | null;
|
|
79
131
|
/**
|
|
80
|
-
* Information on the current status of the investigation.
|
|
132
|
+
* Information on the current status of the investigation. The possible values are: unknown, terminated, successfullyRemediated, benign, failed, partiallyRemediated, running, pendingApproval, pendingResource, queued, innerFailure, preexistingAlert, unsupportedOs, unsupportedAlertType, suppressedAlert, partiallyInvestigated, terminatedByUser, terminatedBySystem, unknownFutureValue.
|
|
81
133
|
*/
|
|
82
134
|
investigationState?: InvestigationState | null;
|
|
83
135
|
/**
|
|
@@ -472,7 +524,7 @@ export interface CaseEscaped extends Entity, Parsable {
|
|
|
472
524
|
}
|
|
473
525
|
export interface CaseOperation extends Entity, Parsable {
|
|
474
526
|
/**
|
|
475
|
-
* The type of action the operation represents.
|
|
527
|
+
* The type of action the operation represents. The possible values are: contentExport, applyTags, convertToPdf, index, estimateStatistics, addToReviewSet, holdUpdate, unknownFutureValue, purgeData, exportReport, exportResult, holdPolicySync. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: purgeData, exportReport, exportResult, holdPolicySync.
|
|
476
528
|
*/
|
|
477
529
|
action?: CaseAction | null;
|
|
478
530
|
/**
|
|
@@ -496,7 +548,7 @@ export interface CaseOperation extends Entity, Parsable {
|
|
|
496
548
|
*/
|
|
497
549
|
resultInfo?: ResultInfo | null;
|
|
498
550
|
/**
|
|
499
|
-
* The status of the case operation.
|
|
551
|
+
* The status of the case operation. The possible values are: notStarted, submissionFailed, running, succeeded, partiallySucceeded, failed, unknownFutureValue.
|
|
500
552
|
*/
|
|
501
553
|
status?: CaseOperationStatus | null;
|
|
502
554
|
}
|
|
@@ -667,6 +719,24 @@ export interface ContainerRegistryEvidence extends AlertEvidence, Parsable {
|
|
|
667
719
|
registry?: string | null;
|
|
668
720
|
}
|
|
669
721
|
export type ContentFormat = (typeof ContentFormatObject)[keyof typeof ContentFormatObject];
|
|
722
|
+
/**
|
|
723
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
724
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
725
|
+
* @returns {Account}
|
|
726
|
+
*/
|
|
727
|
+
export declare function createAccountFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
728
|
+
/**
|
|
729
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
730
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
731
|
+
* @returns {ActiveDirectoryDomainEvidence}
|
|
732
|
+
*/
|
|
733
|
+
export declare function createActiveDirectoryDomainEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
734
|
+
/**
|
|
735
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
736
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
737
|
+
* @returns {AiAgentEvidence}
|
|
738
|
+
*/
|
|
739
|
+
export declare function createAiAgentEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
670
740
|
/**
|
|
671
741
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
672
742
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -949,6 +1019,18 @@ export declare function createEdiscoveryCaseCollectionResponseFromDiscriminatorV
|
|
|
949
1019
|
* @returns {EdiscoveryCase}
|
|
950
1020
|
*/
|
|
951
1021
|
export declare function createEdiscoveryCaseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1022
|
+
/**
|
|
1023
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1024
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1025
|
+
* @returns {EdiscoveryCaseMemberCollectionResponse}
|
|
1026
|
+
*/
|
|
1027
|
+
export declare function createEdiscoveryCaseMemberCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1028
|
+
/**
|
|
1029
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1030
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1031
|
+
* @returns {EdiscoveryCaseMember}
|
|
1032
|
+
*/
|
|
1033
|
+
export declare function createEdiscoveryCaseMemberFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
952
1034
|
/**
|
|
953
1035
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
954
1036
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1381,6 +1463,18 @@ export declare function createHuntingRowResultFromDiscriminatorValue(parseNode:
|
|
|
1381
1463
|
* @returns {Hyperlink}
|
|
1382
1464
|
*/
|
|
1383
1465
|
export declare function createHyperlinkFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1466
|
+
/**
|
|
1467
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1468
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1469
|
+
* @returns {IdentityAccountsCollectionResponse}
|
|
1470
|
+
*/
|
|
1471
|
+
export declare function createIdentityAccountsCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1472
|
+
/**
|
|
1473
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1474
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1475
|
+
* @returns {IdentityAccounts}
|
|
1476
|
+
*/
|
|
1477
|
+
export declare function createIdentityAccountsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1384
1478
|
/**
|
|
1385
1479
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1386
1480
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1435,6 +1529,12 @@ export declare function createIntelligenceProfileIndicatorCollectionResponseFrom
|
|
|
1435
1529
|
* @returns {IntelligenceProfileIndicator}
|
|
1436
1530
|
*/
|
|
1437
1531
|
export declare function createIntelligenceProfileIndicatorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1532
|
+
/**
|
|
1533
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1534
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1535
|
+
* @returns {InvokeActionResult}
|
|
1536
|
+
*/
|
|
1537
|
+
export declare function createInvokeActionResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1438
1538
|
/**
|
|
1439
1539
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1440
1540
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1693,6 +1793,24 @@ export declare function createSearchFromDiscriminatorValue(parseNode: ParseNode
|
|
|
1693
1793
|
* @returns {SecurityGroupEvidence}
|
|
1694
1794
|
*/
|
|
1695
1795
|
export declare function createSecurityGroupEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1796
|
+
/**
|
|
1797
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1798
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1799
|
+
* @returns {SensorCandidateActivationConfiguration}
|
|
1800
|
+
*/
|
|
1801
|
+
export declare function createSensorCandidateActivationConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1802
|
+
/**
|
|
1803
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1804
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1805
|
+
* @returns {SensorCandidateCollectionResponse}
|
|
1806
|
+
*/
|
|
1807
|
+
export declare function createSensorCandidateCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1808
|
+
/**
|
|
1809
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1810
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1811
|
+
* @returns {SensorCandidate}
|
|
1812
|
+
*/
|
|
1813
|
+
export declare function createSensorCandidateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1696
1814
|
/**
|
|
1697
1815
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1698
1816
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1867,6 +1985,12 @@ export declare function createUserAccountFromDiscriminatorValue(parseNode: Parse
|
|
|
1867
1985
|
* @returns {UserEvidence}
|
|
1868
1986
|
*/
|
|
1869
1987
|
export declare function createUserEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1988
|
+
/**
|
|
1989
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1990
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1991
|
+
* @returns {User}
|
|
1992
|
+
*/
|
|
1993
|
+
export declare function createUserFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1870
1994
|
/**
|
|
1871
1995
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1872
1996
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -2037,7 +2161,7 @@ export interface DataSourceContainer extends Entity, Parsable {
|
|
|
2037
2161
|
*/
|
|
2038
2162
|
releasedDateTime?: Date | null;
|
|
2039
2163
|
/**
|
|
2040
|
-
* Latest status of the dataSourceContainer.
|
|
2164
|
+
* Latest status of the dataSourceContainer. The possible values are: Active, Released.
|
|
2041
2165
|
*/
|
|
2042
2166
|
status?: DataSourceContainerStatus | null;
|
|
2043
2167
|
}
|
|
@@ -2069,6 +2193,24 @@ export interface DeploymentAccessKeyType extends AdditionalDataHolder, BackedMod
|
|
|
2069
2193
|
odataType?: string | null;
|
|
2070
2194
|
}
|
|
2071
2195
|
export type DeploymentStatus = (typeof DeploymentStatusObject)[keyof typeof DeploymentStatusObject];
|
|
2196
|
+
/**
|
|
2197
|
+
* The deserialization information for the current model
|
|
2198
|
+
* @param Account The instance to deserialize into.
|
|
2199
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2200
|
+
*/
|
|
2201
|
+
export declare function deserializeIntoAccount(account?: Partial<Account> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2202
|
+
/**
|
|
2203
|
+
* The deserialization information for the current model
|
|
2204
|
+
* @param ActiveDirectoryDomainEvidence The instance to deserialize into.
|
|
2205
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2206
|
+
*/
|
|
2207
|
+
export declare function deserializeIntoActiveDirectoryDomainEvidence(activeDirectoryDomainEvidence?: Partial<ActiveDirectoryDomainEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2208
|
+
/**
|
|
2209
|
+
* The deserialization information for the current model
|
|
2210
|
+
* @param AiAgentEvidence The instance to deserialize into.
|
|
2211
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2212
|
+
*/
|
|
2213
|
+
export declare function deserializeIntoAiAgentEvidence(aiAgentEvidence?: Partial<AiAgentEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2072
2214
|
/**
|
|
2073
2215
|
* The deserialization information for the current model
|
|
2074
2216
|
* @param Alert The instance to deserialize into.
|
|
@@ -2351,6 +2493,18 @@ export declare function deserializeIntoEdiscoveryCase(ediscoveryCase?: Partial<E
|
|
|
2351
2493
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2352
2494
|
*/
|
|
2353
2495
|
export declare function deserializeIntoEdiscoveryCaseCollectionResponse(ediscoveryCaseCollectionResponse?: Partial<EdiscoveryCaseCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2496
|
+
/**
|
|
2497
|
+
* The deserialization information for the current model
|
|
2498
|
+
* @param EdiscoveryCaseMember The instance to deserialize into.
|
|
2499
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2500
|
+
*/
|
|
2501
|
+
export declare function deserializeIntoEdiscoveryCaseMember(ediscoveryCaseMember?: Partial<EdiscoveryCaseMember> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2502
|
+
/**
|
|
2503
|
+
* The deserialization information for the current model
|
|
2504
|
+
* @param EdiscoveryCaseMemberCollectionResponse The instance to deserialize into.
|
|
2505
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2506
|
+
*/
|
|
2507
|
+
export declare function deserializeIntoEdiscoveryCaseMemberCollectionResponse(ediscoveryCaseMemberCollectionResponse?: Partial<EdiscoveryCaseMemberCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2354
2508
|
/**
|
|
2355
2509
|
* The deserialization information for the current model
|
|
2356
2510
|
* @param EdiscoveryCaseSettings The instance to deserialize into.
|
|
@@ -2783,6 +2937,18 @@ export declare function deserializeIntoHuntingRowResult(huntingRowResult?: Parti
|
|
|
2783
2937
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2784
2938
|
*/
|
|
2785
2939
|
export declare function deserializeIntoHyperlink(hyperlink?: Partial<Hyperlink> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2940
|
+
/**
|
|
2941
|
+
* The deserialization information for the current model
|
|
2942
|
+
* @param IdentityAccounts The instance to deserialize into.
|
|
2943
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2944
|
+
*/
|
|
2945
|
+
export declare function deserializeIntoIdentityAccounts(identityAccounts?: Partial<IdentityAccounts> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2946
|
+
/**
|
|
2947
|
+
* The deserialization information for the current model
|
|
2948
|
+
* @param IdentityAccountsCollectionResponse The instance to deserialize into.
|
|
2949
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2950
|
+
*/
|
|
2951
|
+
export declare function deserializeIntoIdentityAccountsCollectionResponse(identityAccountsCollectionResponse?: Partial<IdentityAccountsCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2786
2952
|
/**
|
|
2787
2953
|
* The deserialization information for the current model
|
|
2788
2954
|
* @param IdentityContainer The instance to deserialize into.
|
|
@@ -2837,6 +3003,12 @@ export declare function deserializeIntoIntelligenceProfileIndicator(intelligence
|
|
|
2837
3003
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2838
3004
|
*/
|
|
2839
3005
|
export declare function deserializeIntoIntelligenceProfileIndicatorCollectionResponse(intelligenceProfileIndicatorCollectionResponse?: Partial<IntelligenceProfileIndicatorCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3006
|
+
/**
|
|
3007
|
+
* The deserialization information for the current model
|
|
3008
|
+
* @param InvokeActionResult The instance to deserialize into.
|
|
3009
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3010
|
+
*/
|
|
3011
|
+
export declare function deserializeIntoInvokeActionResult(invokeActionResult?: Partial<InvokeActionResult> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2840
3012
|
/**
|
|
2841
3013
|
* The deserialization information for the current model
|
|
2842
3014
|
* @param IoTDeviceEvidence The instance to deserialize into.
|
|
@@ -3101,6 +3273,24 @@ export declare function deserializeIntoSecurityGroupEvidence(securityGroupEviden
|
|
|
3101
3273
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3102
3274
|
*/
|
|
3103
3275
|
export declare function deserializeIntoSensor(sensor?: Partial<Sensor> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3276
|
+
/**
|
|
3277
|
+
* The deserialization information for the current model
|
|
3278
|
+
* @param SensorCandidate The instance to deserialize into.
|
|
3279
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3280
|
+
*/
|
|
3281
|
+
export declare function deserializeIntoSensorCandidate(sensorCandidate?: Partial<SensorCandidate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3282
|
+
/**
|
|
3283
|
+
* The deserialization information for the current model
|
|
3284
|
+
* @param SensorCandidateActivationConfiguration The instance to deserialize into.
|
|
3285
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3286
|
+
*/
|
|
3287
|
+
export declare function deserializeIntoSensorCandidateActivationConfiguration(sensorCandidateActivationConfiguration?: Partial<SensorCandidateActivationConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3288
|
+
/**
|
|
3289
|
+
* The deserialization information for the current model
|
|
3290
|
+
* @param SensorCandidateCollectionResponse The instance to deserialize into.
|
|
3291
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3292
|
+
*/
|
|
3293
|
+
export declare function deserializeIntoSensorCandidateCollectionResponse(sensorCandidateCollectionResponse?: Partial<SensorCandidateCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3104
3294
|
/**
|
|
3105
3295
|
* The deserialization information for the current model
|
|
3106
3296
|
* @param SensorCollectionResponse The instance to deserialize into.
|
|
@@ -3257,6 +3447,12 @@ export declare function deserializeIntoUnifiedGroupSourceCollectionResponse(unif
|
|
|
3257
3447
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3258
3448
|
*/
|
|
3259
3449
|
export declare function deserializeIntoUrlEvidence(urlEvidence?: Partial<UrlEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3450
|
+
/**
|
|
3451
|
+
* The deserialization information for the current model
|
|
3452
|
+
* @param User The instance to deserialize into.
|
|
3453
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3454
|
+
*/
|
|
3455
|
+
export declare function deserializeIntoUser(user?: Partial<User> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3260
3456
|
/**
|
|
3261
3457
|
* The deserialization information for the current model
|
|
3262
3458
|
* @param UserAccount The instance to deserialize into.
|
|
@@ -3361,7 +3557,7 @@ export interface DeviceEvidence extends AlertEvidence, Parsable {
|
|
|
3361
3557
|
*/
|
|
3362
3558
|
azureAdDeviceId?: string | null;
|
|
3363
3559
|
/**
|
|
3364
|
-
* State of the Defender
|
|
3560
|
+
* State of the Defender anti-malware engine. The possible values are: notReporting, disabled, notUpdated, updated, unknown, notSupported, unknownFutureValue.
|
|
3365
3561
|
*/
|
|
3366
3562
|
defenderAvStatus?: DefenderAvStatus | null;
|
|
3367
3563
|
/**
|
|
@@ -3428,6 +3624,10 @@ export interface DeviceEvidence extends AlertEvidence, Parsable {
|
|
|
3428
3624
|
* The name of the RBAC device group.
|
|
3429
3625
|
*/
|
|
3430
3626
|
rbacGroupName?: string | null;
|
|
3627
|
+
/**
|
|
3628
|
+
* Information on resource access attempts made by the user account.
|
|
3629
|
+
*/
|
|
3630
|
+
resourceAccessEvents?: ResourceAccessEvent[] | null;
|
|
3431
3631
|
/**
|
|
3432
3632
|
* Risk score as evaluated by Microsoft Defender for Endpoint. The possible values are: none, informational, low, medium, high, unknownFutureValue.
|
|
3433
3633
|
*/
|
|
@@ -3494,19 +3694,19 @@ export interface DnsEvidence extends AlertEvidence, Parsable {
|
|
|
3494
3694
|
export type DocumentVersion = (typeof DocumentVersionObject)[keyof typeof DocumentVersionObject];
|
|
3495
3695
|
export interface EdiscoveryAddToReviewSetOperation extends CaseOperation, Parsable {
|
|
3496
3696
|
/**
|
|
3497
|
-
* The options to add items to the review set.
|
|
3697
|
+
* The options to add items to the review set. The possible values are: allVersions, linkedFiles, unknownFutureValue, advancedIndexing, listAttachments, htmlTranscripts, messageConversationExpansion, locationsWithoutHits, allItemsInFolder. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: advancedIndexing, listAttachments, htmlTranscripts, messageConversationExpansion, locationsWithoutHits, allItemsInFolder.
|
|
3498
3698
|
*/
|
|
3499
3699
|
additionalDataOptions?: AdditionalDataOptions[] | null;
|
|
3500
3700
|
/**
|
|
3501
|
-
* Specifies the number of most recent versions of cloud attachments to collect.
|
|
3701
|
+
* Specifies the number of most recent versions of cloud attachments to collect. The possible values are: latest, recent10, recent100, all, unknownFutureValue.
|
|
3502
3702
|
*/
|
|
3503
3703
|
cloudAttachmentVersion?: CloudAttachmentVersion | null;
|
|
3504
3704
|
/**
|
|
3505
|
-
* Specifies the number of most recent versions of SharePoint documents to collect.
|
|
3705
|
+
* Specifies the number of most recent versions of SharePoint documents to collect. The possible values are: latest, recent10, recent100, all, unknownFutureValue.
|
|
3506
3706
|
*/
|
|
3507
3707
|
documentVersion?: DocumentVersion | null;
|
|
3508
3708
|
/**
|
|
3509
|
-
* The items to include in the review set.
|
|
3709
|
+
* The items to include in the review set. The possible values are: searchHits, partiallyIndexed, unknownFutureValue.
|
|
3510
3710
|
*/
|
|
3511
3711
|
itemsToInclude?: ItemsToInclude[] | null;
|
|
3512
3712
|
/**
|
|
@@ -3523,6 +3723,10 @@ export interface EdiscoveryAddToReviewSetOperation extends CaseOperation, Parsab
|
|
|
3523
3723
|
search?: EdiscoverySearch | null;
|
|
3524
3724
|
}
|
|
3525
3725
|
export interface EdiscoveryCase extends CaseEscaped, Parsable {
|
|
3726
|
+
/**
|
|
3727
|
+
* Represents members of an eDiscovery case.
|
|
3728
|
+
*/
|
|
3729
|
+
caseMembers?: EdiscoveryCaseMember[] | null;
|
|
3526
3730
|
/**
|
|
3527
3731
|
* The user who closed the case.
|
|
3528
3732
|
*/
|
|
@@ -3570,6 +3774,26 @@ export interface EdiscoveryCaseCollectionResponse extends BaseCollectionPaginati
|
|
|
3570
3774
|
*/
|
|
3571
3775
|
value?: EdiscoveryCase[] | null;
|
|
3572
3776
|
}
|
|
3777
|
+
export interface EdiscoveryCaseMember extends Entity, Parsable {
|
|
3778
|
+
/**
|
|
3779
|
+
* The display name of the eDiscovery case member. Allowed only for case members of type roleGroup.
|
|
3780
|
+
*/
|
|
3781
|
+
displayName?: string | null;
|
|
3782
|
+
/**
|
|
3783
|
+
* Specifies the recipient type of the eDiscovery case member. The possible values are: user, roleGroup, unknownFutureValue.
|
|
3784
|
+
*/
|
|
3785
|
+
recipientType?: RecipientType[] | null;
|
|
3786
|
+
/**
|
|
3787
|
+
* The smtp address of the eDiscovery case member. Allowed only for case members of type user.
|
|
3788
|
+
*/
|
|
3789
|
+
smtpAddress?: string | null;
|
|
3790
|
+
}
|
|
3791
|
+
export interface EdiscoveryCaseMemberCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
3792
|
+
/**
|
|
3793
|
+
* The value property
|
|
3794
|
+
*/
|
|
3795
|
+
value?: EdiscoveryCaseMember[] | null;
|
|
3796
|
+
}
|
|
3573
3797
|
export interface EdiscoveryCaseSettings extends Entity, Parsable {
|
|
3574
3798
|
/**
|
|
3575
3799
|
* The caseType property
|
|
@@ -3584,7 +3808,7 @@ export interface EdiscoveryCaseSettings extends Entity, Parsable {
|
|
|
3584
3808
|
*/
|
|
3585
3809
|
redundancyDetection?: RedundancyDetectionSettings | null;
|
|
3586
3810
|
/**
|
|
3587
|
-
* The settings of the review set for the case.
|
|
3811
|
+
* The settings of the review set for the case. The possible values are: none, disableGrouping, unknownFutureValue.
|
|
3588
3812
|
*/
|
|
3589
3813
|
reviewSetSettings?: ReviewSetSettings[] | null;
|
|
3590
3814
|
/**
|
|
@@ -3650,7 +3874,7 @@ export interface EdiscoveryEstimateOperation extends CaseOperation, Parsable {
|
|
|
3650
3874
|
*/
|
|
3651
3875
|
siteCount?: number | null;
|
|
3652
3876
|
/**
|
|
3653
|
-
* The options to generate statistics.
|
|
3877
|
+
* The options to generate statistics. The possible values are: includeRefiners, includeQueryStats, includeUnindexedStats, advancedIndexing, locationsWithoutHits, unknownFutureValue.
|
|
3654
3878
|
*/
|
|
3655
3879
|
statisticsOptions?: StatisticsOptions[] | null;
|
|
3656
3880
|
/**
|
|
@@ -3672,11 +3896,11 @@ export interface EdiscoveryExportOperation extends CaseOperation, Parsable {
|
|
|
3672
3896
|
*/
|
|
3673
3897
|
exportFileMetadata?: ExportFileMetadata[] | null;
|
|
3674
3898
|
/**
|
|
3675
|
-
* The options provided for the export. For more information, see reviewSet: export.
|
|
3899
|
+
* The options provided for the export. For more information, see reviewSet: export. The possible values are: originalFiles, text, pdfReplacement, tags, unknownFutureValue, splitSource, includeFolderAndPath, friendlyName, condensePaths. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: splitSource, includeFolderAndPath, friendlyName, condensePaths.
|
|
3676
3900
|
*/
|
|
3677
3901
|
exportOptions?: ExportOptions[] | null;
|
|
3678
3902
|
/**
|
|
3679
|
-
* The options that specify the structure of the export. For more information, see reviewSet: export.
|
|
3903
|
+
* The options that specify the structure of the export. For more information, see reviewSet: export. The 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
3904
|
*/
|
|
3681
3905
|
exportStructure?: ExportFileStructure | null;
|
|
3682
3906
|
/**
|
|
@@ -3742,7 +3966,7 @@ export interface EdiscoveryReviewSetQueryCollectionResponse extends BaseCollecti
|
|
|
3742
3966
|
}
|
|
3743
3967
|
export interface EdiscoveryReviewTag extends Parsable, Tag {
|
|
3744
3968
|
/**
|
|
3745
|
-
* Indicates whether a single or multiple child tags can be associated with a document.
|
|
3969
|
+
* Indicates whether a single or multiple child tags can be associated with a document. The possible values are: One, Many. This value controls whether the UX presents the tags as checkboxes or a radio button group.
|
|
3746
3970
|
*/
|
|
3747
3971
|
childSelectability?: ChildSelectability | null;
|
|
3748
3972
|
/**
|
|
@@ -3774,7 +3998,7 @@ export interface EdiscoverySearch extends Parsable, Search {
|
|
|
3774
3998
|
*/
|
|
3775
3999
|
custodianSources?: DataSource[] | null;
|
|
3776
4000
|
/**
|
|
3777
|
-
* When specified, the collection spans across a service for an entire workload.
|
|
4001
|
+
* When specified, the collection spans across a service for an entire workload. The possible values are: none, allTenantMailboxes, allTenantSites, allCaseCustodians, allCaseNoncustodialDataSources.
|
|
3778
4002
|
*/
|
|
3779
4003
|
dataSourceScopes?: DataSourceScopes[] | null;
|
|
3780
4004
|
/**
|
|
@@ -3798,7 +4022,7 @@ export interface EdiscoverySearchExportOperation extends CaseOperation, Parsable
|
|
|
3798
4022
|
*/
|
|
3799
4023
|
additionalOptions?: AdditionalOptions[] | null;
|
|
3800
4024
|
/**
|
|
3801
|
-
* The versions of cloud attachments to include in messages.
|
|
4025
|
+
* The versions of cloud attachments to include in messages. The possible values are: latest, recent10, recent100, all, unknownFutureValue.
|
|
3802
4026
|
*/
|
|
3803
4027
|
cloudAttachmentVersion?: CloudAttachmentVersion | null;
|
|
3804
4028
|
/**
|
|
@@ -3810,7 +4034,7 @@ export interface EdiscoverySearchExportOperation extends CaseOperation, Parsable
|
|
|
3810
4034
|
*/
|
|
3811
4035
|
displayName?: string | null;
|
|
3812
4036
|
/**
|
|
3813
|
-
* The versions of files in SharePoint to include.
|
|
4037
|
+
* The versions of files in SharePoint to include. The possible values are: latest, recent10, recent100, all, unknownFutureValue.
|
|
3814
4038
|
*/
|
|
3815
4039
|
documentVersion?: DocumentVersion | null;
|
|
3816
4040
|
/**
|
|
@@ -4262,7 +4486,7 @@ export interface GoogleCloudResourceEvidence extends AlertEvidence, Parsable {
|
|
|
4262
4486
|
*/
|
|
4263
4487
|
location?: string | null;
|
|
4264
4488
|
/**
|
|
4265
|
-
* The type of location.
|
|
4489
|
+
* The type of location. The possible values are: unknown, regional, zonal, global, unknownFutureValue.
|
|
4266
4490
|
*/
|
|
4267
4491
|
locationType?: GoogleCloudLocationType | null;
|
|
4268
4492
|
/**
|
|
@@ -4809,16 +5033,61 @@ export interface Hyperlink extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
4809
5033
|
*/
|
|
4810
5034
|
url?: string | null;
|
|
4811
5035
|
}
|
|
5036
|
+
export interface IdentityAccounts extends Entity, Parsable {
|
|
5037
|
+
/**
|
|
5038
|
+
* Collection of accounts of the identity in different identity providers.
|
|
5039
|
+
*/
|
|
5040
|
+
accounts?: Account[] | null;
|
|
5041
|
+
/**
|
|
5042
|
+
* The cloud security identifier of the identityAccount.
|
|
5043
|
+
*/
|
|
5044
|
+
cloudSecurityIdentifier?: string | null;
|
|
5045
|
+
/**
|
|
5046
|
+
* The Active Directory display name of the identityAccount.
|
|
5047
|
+
*/
|
|
5048
|
+
displayName?: string | null;
|
|
5049
|
+
/**
|
|
5050
|
+
* The Active Directory domain name of the identityAccount.
|
|
5051
|
+
*/
|
|
5052
|
+
domain?: string | null;
|
|
5053
|
+
/**
|
|
5054
|
+
* Boolean indicating if the identityAccounts is enabled.
|
|
5055
|
+
*/
|
|
5056
|
+
isEnabled?: boolean | null;
|
|
5057
|
+
/**
|
|
5058
|
+
* The on-premises security identifier of the identityAccount.
|
|
5059
|
+
*/
|
|
5060
|
+
onPremisesSecurityIdentifier?: string | null;
|
|
5061
|
+
}
|
|
5062
|
+
export interface IdentityAccountsCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
5063
|
+
/**
|
|
5064
|
+
* The value property
|
|
5065
|
+
*/
|
|
5066
|
+
value?: IdentityAccounts[] | null;
|
|
5067
|
+
}
|
|
4812
5068
|
export interface IdentityContainer extends Entity, Parsable {
|
|
4813
5069
|
/**
|
|
4814
5070
|
* Represents potential issues identified by Microsoft Defender for Identity within a customer's Microsoft Defender for Identity configuration.
|
|
4815
5071
|
*/
|
|
4816
5072
|
healthIssues?: HealthIssue[] | null;
|
|
5073
|
+
/**
|
|
5074
|
+
* Represents an identity's details in the context of Microsoft Defender for Identity.
|
|
5075
|
+
*/
|
|
5076
|
+
identityAccounts?: IdentityAccounts[] | null;
|
|
5077
|
+
/**
|
|
5078
|
+
* The sensorCandidateActivationConfiguration property
|
|
5079
|
+
*/
|
|
5080
|
+
sensorCandidateActivationConfiguration?: SensorCandidateActivationConfiguration | null;
|
|
5081
|
+
/**
|
|
5082
|
+
* Represents Microsoft Defender for Identity sensors that are ready to be activated.
|
|
5083
|
+
*/
|
|
5084
|
+
sensorCandidates?: SensorCandidate[] | null;
|
|
4817
5085
|
/**
|
|
4818
5086
|
* Represents a customer's Microsoft Defender for Identity sensors.
|
|
4819
5087
|
*/
|
|
4820
5088
|
sensors?: Sensor[] | null;
|
|
4821
5089
|
}
|
|
5090
|
+
export type IdentityProvider = (typeof IdentityProviderObject)[keyof typeof IdentityProviderObject];
|
|
4822
5091
|
export interface Incident extends Entity, Parsable {
|
|
4823
5092
|
/**
|
|
4824
5093
|
* The list of related alerts. Supports $expand.
|
|
@@ -4829,7 +5098,7 @@ export interface Incident extends Entity, Parsable {
|
|
|
4829
5098
|
*/
|
|
4830
5099
|
assignedTo?: string | null;
|
|
4831
5100
|
/**
|
|
4832
|
-
* The specification for the incident.
|
|
5101
|
+
* The specification for the incident. The possible values are: unknown, falsePositive, truePositive, informationalExpectedActivity, unknownFutureValue.
|
|
4833
5102
|
*/
|
|
4834
5103
|
classification?: AlertClassification | null;
|
|
4835
5104
|
/**
|
|
@@ -4849,7 +5118,7 @@ export interface Incident extends Entity, Parsable {
|
|
|
4849
5118
|
*/
|
|
4850
5119
|
description?: string | null;
|
|
4851
5120
|
/**
|
|
4852
|
-
* Specifies the determination of the incident.
|
|
5121
|
+
* Specifies the determination of the incident. The possible values are: unknown, apt, malware, securityPersonnel, securityTesting, unwantedSoftware, other, multiStagedAttack, compromisedUser, phishing, maliciousUserActivity, clean, insufficientData, confirmedUserActivity, lineOfBusinessApplication, unknownFutureValue.
|
|
4853
5122
|
*/
|
|
4854
5123
|
determination?: AlertDetermination | null;
|
|
4855
5124
|
/**
|
|
@@ -4999,6 +5268,32 @@ export interface IntelligenceProfileIndicatorCollectionResponse extends BaseColl
|
|
|
4999
5268
|
}
|
|
5000
5269
|
export type IntelligenceProfileKind = (typeof IntelligenceProfileKindObject)[keyof typeof IntelligenceProfileKindObject];
|
|
5001
5270
|
export type InvestigationState = (typeof InvestigationStateObject)[keyof typeof InvestigationStateObject];
|
|
5271
|
+
export interface InvokeActionResult extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5272
|
+
/**
|
|
5273
|
+
* The account ID.
|
|
5274
|
+
*/
|
|
5275
|
+
accountId?: string | null;
|
|
5276
|
+
/**
|
|
5277
|
+
* The action property
|
|
5278
|
+
*/
|
|
5279
|
+
action?: Action | null;
|
|
5280
|
+
/**
|
|
5281
|
+
* Stores model information.
|
|
5282
|
+
*/
|
|
5283
|
+
backingStoreEnabled?: boolean | null;
|
|
5284
|
+
/**
|
|
5285
|
+
* The unique identifier for tracking the request.
|
|
5286
|
+
*/
|
|
5287
|
+
correlationId?: string | null;
|
|
5288
|
+
/**
|
|
5289
|
+
* The identityProvider property
|
|
5290
|
+
*/
|
|
5291
|
+
identityProvider?: IdentityProvider | null;
|
|
5292
|
+
/**
|
|
5293
|
+
* The OdataType property
|
|
5294
|
+
*/
|
|
5295
|
+
odataType?: string | null;
|
|
5296
|
+
}
|
|
5002
5297
|
export interface IoTDeviceEvidence extends AlertEvidence, Parsable {
|
|
5003
5298
|
/**
|
|
5004
5299
|
* The device ID.
|
|
@@ -5157,7 +5452,7 @@ export interface KubernetesClusterEvidence extends AlertEvidence, Parsable {
|
|
|
5157
5452
|
*/
|
|
5158
5453
|
name?: string | null;
|
|
5159
5454
|
/**
|
|
5160
|
-
* The platform the cluster runs on.
|
|
5455
|
+
* The platform the cluster runs on. The possible values are: unknown, aks, eks, gke, arc, unknownFutureValue.
|
|
5161
5456
|
*/
|
|
5162
5457
|
platform?: KubernetesPlatform | null;
|
|
5163
5458
|
/**
|
|
@@ -5320,7 +5615,7 @@ export interface KubernetesServicePort extends AdditionalDataHolder, BackedModel
|
|
|
5320
5615
|
*/
|
|
5321
5616
|
port?: number | null;
|
|
5322
5617
|
/**
|
|
5323
|
-
* The protocol name.
|
|
5618
|
+
* The protocol name. The possible values are: udp, tcp, sctp, unknownFutureValue.
|
|
5324
5619
|
*/
|
|
5325
5620
|
protocol?: ContainerPortProtocol | null;
|
|
5326
5621
|
/**
|
|
@@ -5375,27 +5670,27 @@ export interface LoggedOnUser extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
5375
5670
|
}
|
|
5376
5671
|
export interface MailboxConfigurationEvidence extends AlertEvidence, Parsable {
|
|
5377
5672
|
/**
|
|
5378
|
-
* The
|
|
5673
|
+
* The unique identifier of the mailbox configuration.
|
|
5379
5674
|
*/
|
|
5380
5675
|
configurationId?: string | null;
|
|
5381
5676
|
/**
|
|
5382
|
-
* The
|
|
5677
|
+
* The type of mailbox configuration. The possible values are: mailForwardingRule, owaSettings, ewsSettings, mailDelegation, userInboxRule, unknownFutureValue.
|
|
5383
5678
|
*/
|
|
5384
5679
|
configurationType?: MailboxConfigurationType | null;
|
|
5385
5680
|
/**
|
|
5386
|
-
* The
|
|
5681
|
+
* The display name of the mailbox.
|
|
5387
5682
|
*/
|
|
5388
5683
|
displayName?: string | null;
|
|
5389
5684
|
/**
|
|
5390
|
-
* The
|
|
5685
|
+
* The external directory object identifier of the mailbox.
|
|
5391
5686
|
*/
|
|
5392
5687
|
externalDirectoryObjectId?: Guid | null;
|
|
5393
5688
|
/**
|
|
5394
|
-
* The
|
|
5689
|
+
* The primary email address of the mailbox.
|
|
5395
5690
|
*/
|
|
5396
5691
|
mailboxPrimaryAddress?: string | null;
|
|
5397
5692
|
/**
|
|
5398
|
-
* The
|
|
5693
|
+
* The user principal name (UPN) of the mailbox.
|
|
5399
5694
|
*/
|
|
5400
5695
|
upn?: string | null;
|
|
5401
5696
|
}
|
|
@@ -5627,6 +5922,7 @@ export type ProtocolType = (typeof ProtocolTypeObject)[keyof typeof ProtocolType
|
|
|
5627
5922
|
export type PurgeAreas = (typeof PurgeAreasObject)[keyof typeof PurgeAreasObject];
|
|
5628
5923
|
export type PurgeType = (typeof PurgeTypeObject)[keyof typeof PurgeTypeObject];
|
|
5629
5924
|
export type QueryType = (typeof QueryTypeObject)[keyof typeof QueryTypeObject];
|
|
5925
|
+
export type RecipientType = (typeof RecipientTypeObject)[keyof typeof RecipientTypeObject];
|
|
5630
5926
|
export interface RedundancyDetectionSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5631
5927
|
/**
|
|
5632
5928
|
* Stores model information.
|
|
@@ -6079,6 +6375,33 @@ export interface Sensor extends Entity, Parsable {
|
|
|
6079
6375
|
*/
|
|
6080
6376
|
version?: string | null;
|
|
6081
6377
|
}
|
|
6378
|
+
export interface SensorCandidate extends Entity, Parsable {
|
|
6379
|
+
/**
|
|
6380
|
+
* The DNS name of the computer associated with the sensor.
|
|
6381
|
+
*/
|
|
6382
|
+
computerDnsName?: string | null;
|
|
6383
|
+
/**
|
|
6384
|
+
* The date and time when the sensor was last seen.
|
|
6385
|
+
*/
|
|
6386
|
+
lastSeenDateTime?: Date | null;
|
|
6387
|
+
/**
|
|
6388
|
+
* The version of the Defender for Identity sensor client. Supports $filter (eq).
|
|
6389
|
+
*/
|
|
6390
|
+
senseClientVersion?: string | null;
|
|
6391
|
+
}
|
|
6392
|
+
export interface SensorCandidateActivationConfiguration extends Entity, Parsable {
|
|
6393
|
+
/**
|
|
6394
|
+
* The activationMode property
|
|
6395
|
+
*/
|
|
6396
|
+
activationMode?: SensorCandidateActivationMode | null;
|
|
6397
|
+
}
|
|
6398
|
+
export type SensorCandidateActivationMode = (typeof SensorCandidateActivationModeObject)[keyof typeof SensorCandidateActivationModeObject];
|
|
6399
|
+
export interface SensorCandidateCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
6400
|
+
/**
|
|
6401
|
+
* The value property
|
|
6402
|
+
*/
|
|
6403
|
+
value?: SensorCandidate[] | null;
|
|
6404
|
+
}
|
|
6082
6405
|
export interface SensorCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
6083
6406
|
/**
|
|
6084
6407
|
* The value property
|
|
@@ -6131,6 +6454,27 @@ export interface SensorSettings extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
6131
6454
|
odataType?: string | null;
|
|
6132
6455
|
}
|
|
6133
6456
|
export type SensorType = (typeof SensorTypeObject)[keyof typeof SensorTypeObject];
|
|
6457
|
+
/**
|
|
6458
|
+
* Serializes information the current object
|
|
6459
|
+
* @param Account The instance to serialize from.
|
|
6460
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
6461
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6462
|
+
*/
|
|
6463
|
+
export declare function serializeAccount(writer: SerializationWriter, account?: Partial<Account> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6464
|
+
/**
|
|
6465
|
+
* Serializes information the current object
|
|
6466
|
+
* @param ActiveDirectoryDomainEvidence The instance to serialize from.
|
|
6467
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
6468
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6469
|
+
*/
|
|
6470
|
+
export declare function serializeActiveDirectoryDomainEvidence(writer: SerializationWriter, activeDirectoryDomainEvidence?: Partial<ActiveDirectoryDomainEvidence> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6471
|
+
/**
|
|
6472
|
+
* Serializes information the current object
|
|
6473
|
+
* @param AiAgentEvidence The instance to serialize from.
|
|
6474
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
6475
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6476
|
+
*/
|
|
6477
|
+
export declare function serializeAiAgentEvidence(writer: SerializationWriter, aiAgentEvidence?: Partial<AiAgentEvidence> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6134
6478
|
/**
|
|
6135
6479
|
* Serializes information the current object
|
|
6136
6480
|
* @param Alert The instance to serialize from.
|
|
@@ -6460,6 +6804,20 @@ export declare function serializeEdiscoveryCase(writer: SerializationWriter, edi
|
|
|
6460
6804
|
* @param writer Serialization writer to use to serialize this model
|
|
6461
6805
|
*/
|
|
6462
6806
|
export declare function serializeEdiscoveryCaseCollectionResponse(writer: SerializationWriter, ediscoveryCaseCollectionResponse?: Partial<EdiscoveryCaseCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6807
|
+
/**
|
|
6808
|
+
* Serializes information the current object
|
|
6809
|
+
* @param EdiscoveryCaseMember The instance to serialize from.
|
|
6810
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
6811
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6812
|
+
*/
|
|
6813
|
+
export declare function serializeEdiscoveryCaseMember(writer: SerializationWriter, ediscoveryCaseMember?: Partial<EdiscoveryCaseMember> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6814
|
+
/**
|
|
6815
|
+
* Serializes information the current object
|
|
6816
|
+
* @param EdiscoveryCaseMemberCollectionResponse The instance to serialize from.
|
|
6817
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
6818
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6819
|
+
*/
|
|
6820
|
+
export declare function serializeEdiscoveryCaseMemberCollectionResponse(writer: SerializationWriter, ediscoveryCaseMemberCollectionResponse?: Partial<EdiscoveryCaseMemberCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6463
6821
|
/**
|
|
6464
6822
|
* Serializes information the current object
|
|
6465
6823
|
* @param EdiscoveryCaseSettings The instance to serialize from.
|
|
@@ -6964,6 +7322,20 @@ export declare function serializeHuntingRowResult(writer: SerializationWriter, h
|
|
|
6964
7322
|
* @param writer Serialization writer to use to serialize this model
|
|
6965
7323
|
*/
|
|
6966
7324
|
export declare function serializeHyperlink(writer: SerializationWriter, hyperlink?: Partial<Hyperlink> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7325
|
+
/**
|
|
7326
|
+
* Serializes information the current object
|
|
7327
|
+
* @param IdentityAccounts The instance to serialize from.
|
|
7328
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7329
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7330
|
+
*/
|
|
7331
|
+
export declare function serializeIdentityAccounts(writer: SerializationWriter, identityAccounts?: Partial<IdentityAccounts> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7332
|
+
/**
|
|
7333
|
+
* Serializes information the current object
|
|
7334
|
+
* @param IdentityAccountsCollectionResponse The instance to serialize from.
|
|
7335
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7336
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7337
|
+
*/
|
|
7338
|
+
export declare function serializeIdentityAccountsCollectionResponse(writer: SerializationWriter, identityAccountsCollectionResponse?: Partial<IdentityAccountsCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6967
7339
|
/**
|
|
6968
7340
|
* Serializes information the current object
|
|
6969
7341
|
* @param IdentityContainer The instance to serialize from.
|
|
@@ -7027,6 +7399,13 @@ export declare function serializeIntelligenceProfileIndicator(writer: Serializat
|
|
|
7027
7399
|
* @param writer Serialization writer to use to serialize this model
|
|
7028
7400
|
*/
|
|
7029
7401
|
export declare function serializeIntelligenceProfileIndicatorCollectionResponse(writer: SerializationWriter, intelligenceProfileIndicatorCollectionResponse?: Partial<IntelligenceProfileIndicatorCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7402
|
+
/**
|
|
7403
|
+
* Serializes information the current object
|
|
7404
|
+
* @param InvokeActionResult The instance to serialize from.
|
|
7405
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7406
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7407
|
+
*/
|
|
7408
|
+
export declare function serializeInvokeActionResult(writer: SerializationWriter, invokeActionResult?: Partial<InvokeActionResult> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7030
7409
|
/**
|
|
7031
7410
|
* Serializes information the current object
|
|
7032
7411
|
* @param IoTDeviceEvidence The instance to serialize from.
|
|
@@ -7335,6 +7714,27 @@ export declare function serializeSecurityGroupEvidence(writer: SerializationWrit
|
|
|
7335
7714
|
* @param writer Serialization writer to use to serialize this model
|
|
7336
7715
|
*/
|
|
7337
7716
|
export declare function serializeSensor(writer: SerializationWriter, sensor?: Partial<Sensor> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7717
|
+
/**
|
|
7718
|
+
* Serializes information the current object
|
|
7719
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7720
|
+
* @param SensorCandidate The instance to serialize from.
|
|
7721
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7722
|
+
*/
|
|
7723
|
+
export declare function serializeSensorCandidate(writer: SerializationWriter, sensorCandidate?: Partial<SensorCandidate> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7724
|
+
/**
|
|
7725
|
+
* Serializes information the current object
|
|
7726
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7727
|
+
* @param SensorCandidateActivationConfiguration The instance to serialize from.
|
|
7728
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7729
|
+
*/
|
|
7730
|
+
export declare function serializeSensorCandidateActivationConfiguration(writer: SerializationWriter, sensorCandidateActivationConfiguration?: Partial<SensorCandidateActivationConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7731
|
+
/**
|
|
7732
|
+
* Serializes information the current object
|
|
7733
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7734
|
+
* @param SensorCandidateCollectionResponse The instance to serialize from.
|
|
7735
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7736
|
+
*/
|
|
7737
|
+
export declare function serializeSensorCandidateCollectionResponse(writer: SerializationWriter, sensorCandidateCollectionResponse?: Partial<SensorCandidateCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7338
7738
|
/**
|
|
7339
7739
|
* Serializes information the current object
|
|
7340
7740
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -7517,6 +7917,13 @@ export declare function serializeUnifiedGroupSourceCollectionResponse(writer: Se
|
|
|
7517
7917
|
* @param writer Serialization writer to use to serialize this model
|
|
7518
7918
|
*/
|
|
7519
7919
|
export declare function serializeUrlEvidence(writer: SerializationWriter, urlEvidence?: Partial<UrlEvidence> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7920
|
+
/**
|
|
7921
|
+
* Serializes information the current object
|
|
7922
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7923
|
+
* @param User The instance to serialize from.
|
|
7924
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7925
|
+
*/
|
|
7926
|
+
export declare function serializeUser(writer: SerializationWriter, user?: Partial<User> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7520
7927
|
/**
|
|
7521
7928
|
* Serializes information the current object
|
|
7522
7929
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -7889,11 +8296,11 @@ export interface TeamsMessageEvidence extends AlertEvidence, Parsable {
|
|
|
7889
8296
|
*/
|
|
7890
8297
|
channelId?: string | null;
|
|
7891
8298
|
/**
|
|
7892
|
-
* The delivery action of this Teams message.
|
|
8299
|
+
* The delivery action of this Teams message. The possible values are: unknown, deliveredAsSpam, delivered, blocked, replaced, unknownFutureValue.
|
|
7893
8300
|
*/
|
|
7894
8301
|
deliveryAction?: TeamsMessageDeliveryAction | null;
|
|
7895
8302
|
/**
|
|
7896
|
-
* The delivery location of this Teams message.
|
|
8303
|
+
* The delivery location of this Teams message. The possible values are: unknown, teams, quarantine, failed, unknownFutureValue.
|
|
7897
8304
|
*/
|
|
7898
8305
|
deliveryLocation?: TeamsDeliveryLocation | null;
|
|
7899
8306
|
/**
|
|
@@ -8101,7 +8508,7 @@ export interface UnifiedGroupSource extends DataSource, Parsable {
|
|
|
8101
8508
|
*/
|
|
8102
8509
|
group?: Group | null;
|
|
8103
8510
|
/**
|
|
8104
|
-
* Specifies which sources are included in this group.
|
|
8511
|
+
* Specifies which sources are included in this group. The possible values are: mailbox, site.
|
|
8105
8512
|
*/
|
|
8106
8513
|
includedSources?: SourceType[] | null;
|
|
8107
8514
|
}
|
|
@@ -8117,6 +8524,16 @@ export interface UrlEvidence extends AlertEvidence, Parsable {
|
|
|
8117
8524
|
*/
|
|
8118
8525
|
url?: string | null;
|
|
8119
8526
|
}
|
|
8527
|
+
export interface User extends IdentityAccounts, Parsable {
|
|
8528
|
+
/**
|
|
8529
|
+
* Email address of the user.
|
|
8530
|
+
*/
|
|
8531
|
+
emailAddress?: string | null;
|
|
8532
|
+
/**
|
|
8533
|
+
* The user principal name.
|
|
8534
|
+
*/
|
|
8535
|
+
userPrincipalName?: string | null;
|
|
8536
|
+
}
|
|
8120
8537
|
export interface UserAccount extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8121
8538
|
/**
|
|
8122
8539
|
* The displayed name of the user account.
|
|
@@ -8175,7 +8592,7 @@ export interface UserSource extends DataSource, Parsable {
|
|
|
8175
8592
|
*/
|
|
8176
8593
|
email?: string | null;
|
|
8177
8594
|
/**
|
|
8178
|
-
* Specifies which sources are included in this group.
|
|
8595
|
+
* Specifies which sources are included in this group. The possible values are: mailbox, site.
|
|
8179
8596
|
*/
|
|
8180
8597
|
includedSources?: SourceType[] | null;
|
|
8181
8598
|
/**
|
|
@@ -8462,6 +8879,15 @@ export declare const ActionAfterRetentionPeriodObject: {
|
|
|
8462
8879
|
readonly Relabel: "relabel";
|
|
8463
8880
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8464
8881
|
};
|
|
8882
|
+
export declare const ActionObject: {
|
|
8883
|
+
readonly Disable: "disable";
|
|
8884
|
+
readonly Enable: "enable";
|
|
8885
|
+
readonly ForcePasswordReset: "forcePasswordReset";
|
|
8886
|
+
readonly RevokeAllSessions: "revokeAllSessions";
|
|
8887
|
+
readonly RequireUserToSignInAgain: "requireUserToSignInAgain";
|
|
8888
|
+
readonly MarkUserAsCompromised: "markUserAsCompromised";
|
|
8889
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8890
|
+
};
|
|
8465
8891
|
export declare const AdditionalDataOptionsObject: {
|
|
8466
8892
|
readonly AllVersions: "allVersions";
|
|
8467
8893
|
readonly LinkedFiles: "linkedFiles";
|
|
@@ -8490,6 +8916,13 @@ export declare const AdditionalOptionsObject: {
|
|
|
8490
8916
|
readonly SplitSource: "splitSource";
|
|
8491
8917
|
readonly IncludeReport: "includeReport";
|
|
8492
8918
|
};
|
|
8919
|
+
export declare const AiAgentPlatformObject: {
|
|
8920
|
+
readonly Unknown: "unknown";
|
|
8921
|
+
readonly AzureAIFoundry: "azureAIFoundry";
|
|
8922
|
+
readonly CopilotStudio: "copilotStudio";
|
|
8923
|
+
readonly Copilot: "copilot";
|
|
8924
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8925
|
+
};
|
|
8493
8926
|
export declare const AlertClassificationObject: {
|
|
8494
8927
|
readonly Unknown: "unknown";
|
|
8495
8928
|
readonly FalsePositive: "falsePositive";
|
|
@@ -8867,6 +9300,12 @@ export declare const HostReputationRuleSeverityObject: {
|
|
|
8867
9300
|
readonly High: "high";
|
|
8868
9301
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8869
9302
|
};
|
|
9303
|
+
export declare const IdentityProviderObject: {
|
|
9304
|
+
readonly EntraID: "entraID";
|
|
9305
|
+
readonly ActiveDirectory: "activeDirectory";
|
|
9306
|
+
readonly Okta: "okta";
|
|
9307
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
9308
|
+
};
|
|
8870
9309
|
export declare const IncidentStatusObject: {
|
|
8871
9310
|
readonly Active: "active";
|
|
8872
9311
|
readonly Resolved: "resolved";
|
|
@@ -8970,6 +9409,11 @@ export declare const QueryTypeObject: {
|
|
|
8970
9409
|
readonly Messages: "messages";
|
|
8971
9410
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8972
9411
|
};
|
|
9412
|
+
export declare const RecipientTypeObject: {
|
|
9413
|
+
readonly User: "user";
|
|
9414
|
+
readonly RoleGroup: "roleGroup";
|
|
9415
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
9416
|
+
};
|
|
8973
9417
|
export declare const RetentionTriggerObject: {
|
|
8974
9418
|
readonly DateLabeled: "dateLabeled";
|
|
8975
9419
|
readonly DateCreated: "dateCreated";
|
|
@@ -8982,6 +9426,11 @@ export declare const ReviewSetSettingsObject: {
|
|
|
8982
9426
|
readonly DisableGrouping: "disableGrouping";
|
|
8983
9427
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8984
9428
|
};
|
|
9429
|
+
export declare const SensorCandidateActivationModeObject: {
|
|
9430
|
+
readonly Manual: "manual";
|
|
9431
|
+
readonly Automated: "automated";
|
|
9432
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
9433
|
+
};
|
|
8985
9434
|
export declare const SensorHealthStatusObject: {
|
|
8986
9435
|
readonly Healthy: "healthy";
|
|
8987
9436
|
readonly NotHealthyLow: "notHealthyLow";
|