@microsoft/msgraph-sdk 1.0.0-preview.50 → 1.0.0-preview.52
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/index.d.ts +68 -18
- package/models/index.d.ts.map +1 -1
- package/models/index.js +41 -2
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +92 -0
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +64 -4
- 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
|
@@ -40,6 +40,10 @@ export interface Alert extends Entity, Parsable {
|
|
|
40
40
|
* Time when Microsoft 365 Defender created the alert.
|
|
41
41
|
*/
|
|
42
42
|
createdDateTime?: Date | null;
|
|
43
|
+
/**
|
|
44
|
+
* The customDetails property
|
|
45
|
+
*/
|
|
46
|
+
customDetails?: Dictionary | null;
|
|
43
47
|
/**
|
|
44
48
|
* String value describing each alert.
|
|
45
49
|
*/
|
|
@@ -573,6 +577,7 @@ export interface CloudApplicationEvidence extends AlertEvidence, Parsable {
|
|
|
573
577
|
*/
|
|
574
578
|
stream?: Stream | null;
|
|
575
579
|
}
|
|
580
|
+
export type CloudAttachmentVersion = (typeof CloudAttachmentVersionObject)[keyof typeof CloudAttachmentVersionObject];
|
|
576
581
|
export interface CloudLogonRequestEvidence extends AlertEvidence, Parsable {
|
|
577
582
|
/**
|
|
578
583
|
* The unique identifier for the sign-in request.
|
|
@@ -3258,7 +3263,24 @@ export interface DnsEvidence extends AlertEvidence, Parsable {
|
|
|
3258
3263
|
*/
|
|
3259
3264
|
ipAddresses?: IpEvidence[] | null;
|
|
3260
3265
|
}
|
|
3266
|
+
export type DocumentVersion = (typeof DocumentVersionObject)[keyof typeof DocumentVersionObject];
|
|
3261
3267
|
export interface EdiscoveryAddToReviewSetOperation extends CaseOperation, Parsable {
|
|
3268
|
+
/**
|
|
3269
|
+
* The additionalDataOptions property
|
|
3270
|
+
*/
|
|
3271
|
+
additionalDataOptions?: AdditionalDataOptions[] | null;
|
|
3272
|
+
/**
|
|
3273
|
+
* The cloudAttachmentVersion property
|
|
3274
|
+
*/
|
|
3275
|
+
cloudAttachmentVersion?: CloudAttachmentVersion | null;
|
|
3276
|
+
/**
|
|
3277
|
+
* The documentVersion property
|
|
3278
|
+
*/
|
|
3279
|
+
documentVersion?: DocumentVersion | null;
|
|
3280
|
+
/**
|
|
3281
|
+
* The itemsToInclude property
|
|
3282
|
+
*/
|
|
3283
|
+
itemsToInclude?: ItemsToInclude[] | null;
|
|
3262
3284
|
/**
|
|
3263
3285
|
* eDiscovery review set to which items matching source collection query gets added.
|
|
3264
3286
|
*/
|
|
@@ -3383,6 +3405,10 @@ export interface EdiscoveryEstimateOperation extends CaseOperation, Parsable {
|
|
|
3383
3405
|
* The number of mailboxes that had search hits.
|
|
3384
3406
|
*/
|
|
3385
3407
|
siteCount?: number | null;
|
|
3408
|
+
/**
|
|
3409
|
+
* The statisticsOptions property
|
|
3410
|
+
*/
|
|
3411
|
+
statisticsOptions?: StatisticsOptions[] | null;
|
|
3386
3412
|
/**
|
|
3387
3413
|
* The estimated count of unindexed items for the collection.
|
|
3388
3414
|
*/
|
|
@@ -3521,6 +3547,10 @@ export interface EdiscoverySearchExportOperation extends CaseOperation, Parsable
|
|
|
3521
3547
|
* The additional items to include in the export. The possible values are: none, teamsAndYammerConversations, cloudAttachments, allDocumentVersions, subfolderContents, listAttachments, unknownFutureValue.
|
|
3522
3548
|
*/
|
|
3523
3549
|
additionalOptions?: AdditionalOptions[] | null;
|
|
3550
|
+
/**
|
|
3551
|
+
* The cloudAttachmentVersion property
|
|
3552
|
+
*/
|
|
3553
|
+
cloudAttachmentVersion?: CloudAttachmentVersion | null;
|
|
3524
3554
|
/**
|
|
3525
3555
|
* The description of the export by the user.
|
|
3526
3556
|
*/
|
|
@@ -3529,6 +3559,10 @@ export interface EdiscoverySearchExportOperation extends CaseOperation, Parsable
|
|
|
3529
3559
|
* The name of export provided by the user.
|
|
3530
3560
|
*/
|
|
3531
3561
|
displayName?: string | null;
|
|
3562
|
+
/**
|
|
3563
|
+
* The documentVersion property
|
|
3564
|
+
*/
|
|
3565
|
+
documentVersion?: DocumentVersion | null;
|
|
3532
3566
|
/**
|
|
3533
3567
|
* Items to be included in the export. The possible values are: searchHits, partiallyIndexed, unknownFutureValue.
|
|
3534
3568
|
*/
|
|
@@ -3699,6 +3733,10 @@ export interface FileDetails extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
3699
3733
|
* The certificate authority (CA) that issued the certificate.
|
|
3700
3734
|
*/
|
|
3701
3735
|
issuer?: string | null;
|
|
3736
|
+
/**
|
|
3737
|
+
* The Md5 cryptographic hash of the file content.
|
|
3738
|
+
*/
|
|
3739
|
+
md5?: string | null;
|
|
3702
3740
|
/**
|
|
3703
3741
|
* The OdataType property
|
|
3704
3742
|
*/
|
|
@@ -3711,6 +3749,10 @@ export interface FileDetails extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
3711
3749
|
* The Sha256 cryptographic hash of the file content.
|
|
3712
3750
|
*/
|
|
3713
3751
|
sha256?: string | null;
|
|
3752
|
+
/**
|
|
3753
|
+
* The sha256Ac property
|
|
3754
|
+
*/
|
|
3755
|
+
sha256Ac?: string | null;
|
|
3714
3756
|
/**
|
|
3715
3757
|
* The signer of the signed file.
|
|
3716
3758
|
*/
|
|
@@ -4917,6 +4959,7 @@ export interface IpEvidence extends AlertEvidence, Parsable {
|
|
|
4917
4959
|
*/
|
|
4918
4960
|
stream?: Stream | null;
|
|
4919
4961
|
}
|
|
4962
|
+
export type ItemsToInclude = (typeof ItemsToIncludeObject)[keyof typeof ItemsToIncludeObject];
|
|
4920
4963
|
export interface KubernetesClusterEvidence extends AlertEvidence, Parsable {
|
|
4921
4964
|
/**
|
|
4922
4965
|
* The cloud identifier of the cluster. Can be either an amazonResourceEvidence, azureResourceEvidence, or googleCloudResourceEvidence object.
|
|
@@ -7088,6 +7131,7 @@ export interface SslCertificateEntity extends AdditionalDataHolder, BackedModel,
|
|
|
7088
7131
|
*/
|
|
7089
7132
|
surname?: string | null;
|
|
7090
7133
|
}
|
|
7134
|
+
export type StatisticsOptions = (typeof StatisticsOptionsObject)[keyof typeof StatisticsOptionsObject];
|
|
7091
7135
|
export interface Stream extends AdditionalDataHolder, BackedModel, Parsable {
|
|
7092
7136
|
/**
|
|
7093
7137
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -7787,6 +7831,12 @@ export declare const AdditionalDataOptionsObject: {
|
|
|
7787
7831
|
readonly AllVersions: "allVersions";
|
|
7788
7832
|
readonly LinkedFiles: "linkedFiles";
|
|
7789
7833
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7834
|
+
readonly AdvancedIndexing: "advancedIndexing";
|
|
7835
|
+
readonly ListAttachments: "listAttachments";
|
|
7836
|
+
readonly HtmlTranscripts: "htmlTranscripts";
|
|
7837
|
+
readonly MessageConversationExpansion: "messageConversationExpansion";
|
|
7838
|
+
readonly LocationsWithoutHits: "locationsWithoutHits";
|
|
7839
|
+
readonly AllItemsInFolder: "allItemsInFolder";
|
|
7790
7840
|
};
|
|
7791
7841
|
export declare const AdditionalOptionsObject: {
|
|
7792
7842
|
readonly None: "none";
|
|
@@ -7796,6 +7846,15 @@ export declare const AdditionalOptionsObject: {
|
|
|
7796
7846
|
readonly SubfolderContents: "subfolderContents";
|
|
7797
7847
|
readonly ListAttachments: "listAttachments";
|
|
7798
7848
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7849
|
+
readonly HtmlTranscripts: "htmlTranscripts";
|
|
7850
|
+
readonly AdvancedIndexing: "advancedIndexing";
|
|
7851
|
+
readonly AllItemsInFolder: "allItemsInFolder";
|
|
7852
|
+
readonly IncludeFolderAndPath: "includeFolderAndPath";
|
|
7853
|
+
readonly CondensePaths: "condensePaths";
|
|
7854
|
+
readonly FriendlyName: "friendlyName";
|
|
7855
|
+
readonly SplitSource: "splitSource";
|
|
7856
|
+
readonly OptimizedPartitionSize: "optimizedPartitionSize";
|
|
7857
|
+
readonly IncludeReport: "includeReport";
|
|
7799
7858
|
};
|
|
7800
7859
|
export declare const AlertClassificationObject: {
|
|
7801
7860
|
readonly Unknown: "unknown";
|
|
@@ -7887,6 +7946,13 @@ export declare const ChildSelectabilityObject: {
|
|
|
7887
7946
|
readonly Many: "Many";
|
|
7888
7947
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7889
7948
|
};
|
|
7949
|
+
export declare const CloudAttachmentVersionObject: {
|
|
7950
|
+
readonly Latest: "latest";
|
|
7951
|
+
readonly Recent10: "recent10";
|
|
7952
|
+
readonly Recent100: "recent100";
|
|
7953
|
+
readonly All: "all";
|
|
7954
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7955
|
+
};
|
|
7890
7956
|
export declare const ContainerPortProtocolObject: {
|
|
7891
7957
|
readonly Udp: "udp";
|
|
7892
7958
|
readonly Tcp: "tcp";
|
|
@@ -8007,6 +8073,13 @@ export declare const DeviceRiskScoreObject: {
|
|
|
8007
8073
|
readonly High: "high";
|
|
8008
8074
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8009
8075
|
};
|
|
8076
|
+
export declare const DocumentVersionObject: {
|
|
8077
|
+
readonly Latest: "latest";
|
|
8078
|
+
readonly Recent10: "recent10";
|
|
8079
|
+
readonly Recent100: "recent100";
|
|
8080
|
+
readonly All: "all";
|
|
8081
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8082
|
+
};
|
|
8010
8083
|
export declare const EventPropagationStatusObject: {
|
|
8011
8084
|
readonly None: "none";
|
|
8012
8085
|
readonly InProcessing: "inProcessing";
|
|
@@ -8070,6 +8143,7 @@ export declare const ExportFileStructureObject: {
|
|
|
8070
8143
|
readonly Directory: "directory";
|
|
8071
8144
|
readonly Pst: "pst";
|
|
8072
8145
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8146
|
+
readonly Msg: "msg";
|
|
8073
8147
|
};
|
|
8074
8148
|
export declare const ExportFormatObject: {
|
|
8075
8149
|
readonly Pst: "pst";
|
|
@@ -8088,6 +8162,11 @@ export declare const ExportOptionsObject: {
|
|
|
8088
8162
|
readonly PdfReplacement: "pdfReplacement";
|
|
8089
8163
|
readonly Tags: "tags";
|
|
8090
8164
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8165
|
+
readonly SplitSource: "splitSource";
|
|
8166
|
+
readonly IncludeFolderAndPath: "includeFolderAndPath";
|
|
8167
|
+
readonly FriendlyName: "friendlyName";
|
|
8168
|
+
readonly CondensePaths: "condensePaths";
|
|
8169
|
+
readonly OptimizedPartitionSize: "optimizedPartitionSize";
|
|
8091
8170
|
};
|
|
8092
8171
|
export declare const FileHashAlgorithmObject: {
|
|
8093
8172
|
readonly Unknown: "unknown";
|
|
@@ -8172,6 +8251,11 @@ export declare const IoTDeviceImportanceTypeObject: {
|
|
|
8172
8251
|
readonly High: "high";
|
|
8173
8252
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8174
8253
|
};
|
|
8254
|
+
export declare const ItemsToIncludeObject: {
|
|
8255
|
+
readonly SearchHits: "searchHits";
|
|
8256
|
+
readonly PartiallyIndexed: "partiallyIndexed";
|
|
8257
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8258
|
+
};
|
|
8175
8259
|
export declare const KubernetesPlatformObject: {
|
|
8176
8260
|
readonly Unknown: "unknown";
|
|
8177
8261
|
readonly Aks: "aks";
|
|
@@ -8272,6 +8356,14 @@ export declare const SourceTypeObject: {
|
|
|
8272
8356
|
readonly Site: "site";
|
|
8273
8357
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8274
8358
|
};
|
|
8359
|
+
export declare const StatisticsOptionsObject: {
|
|
8360
|
+
readonly IncludeRefiners: "includeRefiners";
|
|
8361
|
+
readonly IncludeQueryStats: "includeQueryStats";
|
|
8362
|
+
readonly IncludeUnindexedStats: "includeUnindexedStats";
|
|
8363
|
+
readonly AdvancedIndexing: "advancedIndexing";
|
|
8364
|
+
readonly LocationsWithoutHits: "locationsWithoutHits";
|
|
8365
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8366
|
+
};
|
|
8275
8367
|
export declare const TeamsDeliveryLocationObject: {
|
|
8276
8368
|
readonly Unknown: "unknown";
|
|
8277
8369
|
readonly Teams: "teams";
|