@microsoft/msgraph-sdk 1.0.0-preview.49 → 1.0.0-preview.51
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/graphRequestAdapter.d.ts.map +1 -1
- package/graphRequestAdapter.js +1 -1
- package/graphRequestAdapter.js.map +1 -1
- package/models/index.d.ts +52 -14
- package/models/index.d.ts.map +1 -1
- package/models/index.js +35 -1
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +80 -0
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +58 -3
- package/models/security/index.js.map +1 -1
- package/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -573,6 +573,7 @@ export interface CloudApplicationEvidence extends AlertEvidence, Parsable {
|
|
|
573
573
|
*/
|
|
574
574
|
stream?: Stream | null;
|
|
575
575
|
}
|
|
576
|
+
export type CloudAttachmentVersion = (typeof CloudAttachmentVersionObject)[keyof typeof CloudAttachmentVersionObject];
|
|
576
577
|
export interface CloudLogonRequestEvidence extends AlertEvidence, Parsable {
|
|
577
578
|
/**
|
|
578
579
|
* The unique identifier for the sign-in request.
|
|
@@ -3258,7 +3259,24 @@ export interface DnsEvidence extends AlertEvidence, Parsable {
|
|
|
3258
3259
|
*/
|
|
3259
3260
|
ipAddresses?: IpEvidence[] | null;
|
|
3260
3261
|
}
|
|
3262
|
+
export type DocumentVersion = (typeof DocumentVersionObject)[keyof typeof DocumentVersionObject];
|
|
3261
3263
|
export interface EdiscoveryAddToReviewSetOperation extends CaseOperation, Parsable {
|
|
3264
|
+
/**
|
|
3265
|
+
* The additionalDataOptions property
|
|
3266
|
+
*/
|
|
3267
|
+
additionalDataOptions?: AdditionalDataOptions[] | null;
|
|
3268
|
+
/**
|
|
3269
|
+
* The cloudAttachmentVersion property
|
|
3270
|
+
*/
|
|
3271
|
+
cloudAttachmentVersion?: CloudAttachmentVersion | null;
|
|
3272
|
+
/**
|
|
3273
|
+
* The documentVersion property
|
|
3274
|
+
*/
|
|
3275
|
+
documentVersion?: DocumentVersion | null;
|
|
3276
|
+
/**
|
|
3277
|
+
* The itemsToInclude property
|
|
3278
|
+
*/
|
|
3279
|
+
itemsToInclude?: ItemsToInclude[] | null;
|
|
3262
3280
|
/**
|
|
3263
3281
|
* eDiscovery review set to which items matching source collection query gets added.
|
|
3264
3282
|
*/
|
|
@@ -3383,6 +3401,10 @@ export interface EdiscoveryEstimateOperation extends CaseOperation, Parsable {
|
|
|
3383
3401
|
* The number of mailboxes that had search hits.
|
|
3384
3402
|
*/
|
|
3385
3403
|
siteCount?: number | null;
|
|
3404
|
+
/**
|
|
3405
|
+
* The statisticsOptions property
|
|
3406
|
+
*/
|
|
3407
|
+
statisticsOptions?: StatisticsOptions[] | null;
|
|
3386
3408
|
/**
|
|
3387
3409
|
* The estimated count of unindexed items for the collection.
|
|
3388
3410
|
*/
|
|
@@ -3521,6 +3543,10 @@ export interface EdiscoverySearchExportOperation extends CaseOperation, Parsable
|
|
|
3521
3543
|
* The additional items to include in the export. The possible values are: none, teamsAndYammerConversations, cloudAttachments, allDocumentVersions, subfolderContents, listAttachments, unknownFutureValue.
|
|
3522
3544
|
*/
|
|
3523
3545
|
additionalOptions?: AdditionalOptions[] | null;
|
|
3546
|
+
/**
|
|
3547
|
+
* The cloudAttachmentVersion property
|
|
3548
|
+
*/
|
|
3549
|
+
cloudAttachmentVersion?: CloudAttachmentVersion | null;
|
|
3524
3550
|
/**
|
|
3525
3551
|
* The description of the export by the user.
|
|
3526
3552
|
*/
|
|
@@ -3529,6 +3555,10 @@ export interface EdiscoverySearchExportOperation extends CaseOperation, Parsable
|
|
|
3529
3555
|
* The name of export provided by the user.
|
|
3530
3556
|
*/
|
|
3531
3557
|
displayName?: string | null;
|
|
3558
|
+
/**
|
|
3559
|
+
* The documentVersion property
|
|
3560
|
+
*/
|
|
3561
|
+
documentVersion?: DocumentVersion | null;
|
|
3532
3562
|
/**
|
|
3533
3563
|
* Items to be included in the export. The possible values are: searchHits, partiallyIndexed, unknownFutureValue.
|
|
3534
3564
|
*/
|
|
@@ -4917,6 +4947,7 @@ export interface IpEvidence extends AlertEvidence, Parsable {
|
|
|
4917
4947
|
*/
|
|
4918
4948
|
stream?: Stream | null;
|
|
4919
4949
|
}
|
|
4950
|
+
export type ItemsToInclude = (typeof ItemsToIncludeObject)[keyof typeof ItemsToIncludeObject];
|
|
4920
4951
|
export interface KubernetesClusterEvidence extends AlertEvidence, Parsable {
|
|
4921
4952
|
/**
|
|
4922
4953
|
* The cloud identifier of the cluster. Can be either an amazonResourceEvidence, azureResourceEvidence, or googleCloudResourceEvidence object.
|
|
@@ -7088,6 +7119,7 @@ export interface SslCertificateEntity extends AdditionalDataHolder, BackedModel,
|
|
|
7088
7119
|
*/
|
|
7089
7120
|
surname?: string | null;
|
|
7090
7121
|
}
|
|
7122
|
+
export type StatisticsOptions = (typeof StatisticsOptionsObject)[keyof typeof StatisticsOptionsObject];
|
|
7091
7123
|
export interface Stream extends AdditionalDataHolder, BackedModel, Parsable {
|
|
7092
7124
|
/**
|
|
7093
7125
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -7787,6 +7819,12 @@ export declare const AdditionalDataOptionsObject: {
|
|
|
7787
7819
|
readonly AllVersions: "allVersions";
|
|
7788
7820
|
readonly LinkedFiles: "linkedFiles";
|
|
7789
7821
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7822
|
+
readonly AdvancedIndexing: "advancedIndexing";
|
|
7823
|
+
readonly ListAttachments: "listAttachments";
|
|
7824
|
+
readonly HtmlTranscripts: "htmlTranscripts";
|
|
7825
|
+
readonly MessageConversationExpansion: "messageConversationExpansion";
|
|
7826
|
+
readonly LocationsWithoutHits: "locationsWithoutHits";
|
|
7827
|
+
readonly AllItemsInFolder: "allItemsInFolder";
|
|
7790
7828
|
};
|
|
7791
7829
|
export declare const AdditionalOptionsObject: {
|
|
7792
7830
|
readonly None: "none";
|
|
@@ -7796,6 +7834,15 @@ export declare const AdditionalOptionsObject: {
|
|
|
7796
7834
|
readonly SubfolderContents: "subfolderContents";
|
|
7797
7835
|
readonly ListAttachments: "listAttachments";
|
|
7798
7836
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7837
|
+
readonly HtmlTranscripts: "htmlTranscripts";
|
|
7838
|
+
readonly AdvancedIndexing: "advancedIndexing";
|
|
7839
|
+
readonly AllItemsInFolder: "allItemsInFolder";
|
|
7840
|
+
readonly IncludeFolderAndPath: "includeFolderAndPath";
|
|
7841
|
+
readonly CondensePaths: "condensePaths";
|
|
7842
|
+
readonly FriendlyName: "friendlyName";
|
|
7843
|
+
readonly SplitSource: "splitSource";
|
|
7844
|
+
readonly OptimizedPartitionSize: "optimizedPartitionSize";
|
|
7845
|
+
readonly IncludeReport: "includeReport";
|
|
7799
7846
|
};
|
|
7800
7847
|
export declare const AlertClassificationObject: {
|
|
7801
7848
|
readonly Unknown: "unknown";
|
|
@@ -7887,6 +7934,13 @@ export declare const ChildSelectabilityObject: {
|
|
|
7887
7934
|
readonly Many: "Many";
|
|
7888
7935
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7889
7936
|
};
|
|
7937
|
+
export declare const CloudAttachmentVersionObject: {
|
|
7938
|
+
readonly Latest: "latest";
|
|
7939
|
+
readonly Recent10: "recent10";
|
|
7940
|
+
readonly Recent100: "recent100";
|
|
7941
|
+
readonly All: "all";
|
|
7942
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7943
|
+
};
|
|
7890
7944
|
export declare const ContainerPortProtocolObject: {
|
|
7891
7945
|
readonly Udp: "udp";
|
|
7892
7946
|
readonly Tcp: "tcp";
|
|
@@ -8007,6 +8061,13 @@ export declare const DeviceRiskScoreObject: {
|
|
|
8007
8061
|
readonly High: "high";
|
|
8008
8062
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8009
8063
|
};
|
|
8064
|
+
export declare const DocumentVersionObject: {
|
|
8065
|
+
readonly Latest: "latest";
|
|
8066
|
+
readonly Recent10: "recent10";
|
|
8067
|
+
readonly Recent100: "recent100";
|
|
8068
|
+
readonly All: "all";
|
|
8069
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8070
|
+
};
|
|
8010
8071
|
export declare const EventPropagationStatusObject: {
|
|
8011
8072
|
readonly None: "none";
|
|
8012
8073
|
readonly InProcessing: "inProcessing";
|
|
@@ -8070,6 +8131,7 @@ export declare const ExportFileStructureObject: {
|
|
|
8070
8131
|
readonly Directory: "directory";
|
|
8071
8132
|
readonly Pst: "pst";
|
|
8072
8133
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8134
|
+
readonly Msg: "msg";
|
|
8073
8135
|
};
|
|
8074
8136
|
export declare const ExportFormatObject: {
|
|
8075
8137
|
readonly Pst: "pst";
|
|
@@ -8088,6 +8150,11 @@ export declare const ExportOptionsObject: {
|
|
|
8088
8150
|
readonly PdfReplacement: "pdfReplacement";
|
|
8089
8151
|
readonly Tags: "tags";
|
|
8090
8152
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8153
|
+
readonly SplitSource: "splitSource";
|
|
8154
|
+
readonly IncludeFolderAndPath: "includeFolderAndPath";
|
|
8155
|
+
readonly FriendlyName: "friendlyName";
|
|
8156
|
+
readonly CondensePaths: "condensePaths";
|
|
8157
|
+
readonly OptimizedPartitionSize: "optimizedPartitionSize";
|
|
8091
8158
|
};
|
|
8092
8159
|
export declare const FileHashAlgorithmObject: {
|
|
8093
8160
|
readonly Unknown: "unknown";
|
|
@@ -8172,6 +8239,11 @@ export declare const IoTDeviceImportanceTypeObject: {
|
|
|
8172
8239
|
readonly High: "high";
|
|
8173
8240
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8174
8241
|
};
|
|
8242
|
+
export declare const ItemsToIncludeObject: {
|
|
8243
|
+
readonly SearchHits: "searchHits";
|
|
8244
|
+
readonly PartiallyIndexed: "partiallyIndexed";
|
|
8245
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8246
|
+
};
|
|
8175
8247
|
export declare const KubernetesPlatformObject: {
|
|
8176
8248
|
readonly Unknown: "unknown";
|
|
8177
8249
|
readonly Aks: "aks";
|
|
@@ -8272,6 +8344,14 @@ export declare const SourceTypeObject: {
|
|
|
8272
8344
|
readonly Site: "site";
|
|
8273
8345
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8274
8346
|
};
|
|
8347
|
+
export declare const StatisticsOptionsObject: {
|
|
8348
|
+
readonly IncludeRefiners: "includeRefiners";
|
|
8349
|
+
readonly IncludeQueryStats: "includeQueryStats";
|
|
8350
|
+
readonly IncludeUnindexedStats: "includeUnindexedStats";
|
|
8351
|
+
readonly AdvancedIndexing: "advancedIndexing";
|
|
8352
|
+
readonly LocationsWithoutHits: "locationsWithoutHits";
|
|
8353
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8354
|
+
};
|
|
8275
8355
|
export declare const TeamsDeliveryLocationObject: {
|
|
8276
8356
|
readonly Unknown: "unknown";
|
|
8277
8357
|
readonly Teams: "teams";
|