@microsoft/msgraph-sdk 1.0.0-preview.67 → 1.0.0-preview.68
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 +389 -67
- package/models/index.d.ts.map +1 -1
- package/models/index.js +420 -18
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +98 -0
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +90 -2
- package/models/security/index.js.map +1 -1
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1592,6 +1592,18 @@ export declare function createRegistryKeyEvidenceFromDiscriminatorValue(parseNod
|
|
|
1592
1592
|
* @returns {RegistryValueEvidence}
|
|
1593
1593
|
*/
|
|
1594
1594
|
export declare function createRegistryValueEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1595
|
+
/**
|
|
1596
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1597
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1598
|
+
* @returns {ReportFileMetadata}
|
|
1599
|
+
*/
|
|
1600
|
+
export declare function createReportFileMetadataFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1601
|
+
/**
|
|
1602
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1603
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1604
|
+
* @returns {ResourceAccessEvent}
|
|
1605
|
+
*/
|
|
1606
|
+
export declare function createResourceAccessEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1595
1607
|
/**
|
|
1596
1608
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1597
1609
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -2976,6 +2988,18 @@ export declare function deserializeIntoRegistryKeyEvidence(registryKeyEvidence?:
|
|
|
2976
2988
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2977
2989
|
*/
|
|
2978
2990
|
export declare function deserializeIntoRegistryValueEvidence(registryValueEvidence?: Partial<RegistryValueEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2991
|
+
/**
|
|
2992
|
+
* The deserialization information for the current model
|
|
2993
|
+
* @param ReportFileMetadata The instance to deserialize into.
|
|
2994
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2995
|
+
*/
|
|
2996
|
+
export declare function deserializeIntoReportFileMetadata(reportFileMetadata?: Partial<ReportFileMetadata> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2997
|
+
/**
|
|
2998
|
+
* The deserialization information for the current model
|
|
2999
|
+
* @param ResourceAccessEvent The instance to deserialize into.
|
|
3000
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3001
|
+
*/
|
|
3002
|
+
export declare function deserializeIntoResourceAccessEvent(resourceAccessEvent?: Partial<ResourceAccessEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2979
3003
|
/**
|
|
2980
3004
|
* The deserialization information for the current model
|
|
2981
3005
|
* @param RetentionDuration The instance to deserialize into.
|
|
@@ -3468,6 +3492,10 @@ export interface EdiscoveryAddToReviewSetOperation extends CaseOperation, Parsab
|
|
|
3468
3492
|
* The items to include in the review set. Possible values are: searchHits, partiallyIndexed, unknownFutureValue.
|
|
3469
3493
|
*/
|
|
3470
3494
|
itemsToInclude?: ItemsToInclude[] | null;
|
|
3495
|
+
/**
|
|
3496
|
+
* Contains the properties for report file metadata, including downloadUrl, fileName, and size.
|
|
3497
|
+
*/
|
|
3498
|
+
reportFileMetadata?: ReportFileMetadata[] | null;
|
|
3471
3499
|
/**
|
|
3472
3500
|
* eDiscovery review set to which items matching source collection query gets added.
|
|
3473
3501
|
*/
|
|
@@ -3584,6 +3612,10 @@ export interface EdiscoveryEstimateOperation extends CaseOperation, Parsable {
|
|
|
3584
3612
|
* The number of mailboxes that had search hits.
|
|
3585
3613
|
*/
|
|
3586
3614
|
mailboxCount?: number | null;
|
|
3615
|
+
/**
|
|
3616
|
+
* Contains the properties for report file metadata, including downloadUrl, fileName, and size.
|
|
3617
|
+
*/
|
|
3618
|
+
reportFileMetadata?: ReportFileMetadata[] | null;
|
|
3587
3619
|
/**
|
|
3588
3620
|
* eDiscovery search.
|
|
3589
3621
|
*/
|
|
@@ -5625,6 +5657,54 @@ export interface RegistryValueEvidence extends AlertEvidence, Parsable {
|
|
|
5625
5657
|
*/
|
|
5626
5658
|
registryValueType?: string | null;
|
|
5627
5659
|
}
|
|
5660
|
+
export interface ReportFileMetadata extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5661
|
+
/**
|
|
5662
|
+
* Stores model information.
|
|
5663
|
+
*/
|
|
5664
|
+
backingStoreEnabled?: boolean | null;
|
|
5665
|
+
/**
|
|
5666
|
+
* The URL to download the report.
|
|
5667
|
+
*/
|
|
5668
|
+
downloadUrl?: string | null;
|
|
5669
|
+
/**
|
|
5670
|
+
* The name of the file.
|
|
5671
|
+
*/
|
|
5672
|
+
fileName?: string | null;
|
|
5673
|
+
/**
|
|
5674
|
+
* The OdataType property
|
|
5675
|
+
*/
|
|
5676
|
+
odataType?: string | null;
|
|
5677
|
+
/**
|
|
5678
|
+
* The size of the file.
|
|
5679
|
+
*/
|
|
5680
|
+
size?: number | null;
|
|
5681
|
+
}
|
|
5682
|
+
export interface ResourceAccessEvent extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5683
|
+
/**
|
|
5684
|
+
* The time of the access event.
|
|
5685
|
+
*/
|
|
5686
|
+
accessDateTime?: Date | null;
|
|
5687
|
+
/**
|
|
5688
|
+
* The identifier of the user account.
|
|
5689
|
+
*/
|
|
5690
|
+
accountId?: string | null;
|
|
5691
|
+
/**
|
|
5692
|
+
* Stores model information.
|
|
5693
|
+
*/
|
|
5694
|
+
backingStoreEnabled?: boolean | null;
|
|
5695
|
+
/**
|
|
5696
|
+
* IP address of the resource.
|
|
5697
|
+
*/
|
|
5698
|
+
ipAddress?: string | null;
|
|
5699
|
+
/**
|
|
5700
|
+
* The OdataType property
|
|
5701
|
+
*/
|
|
5702
|
+
odataType?: string | null;
|
|
5703
|
+
/**
|
|
5704
|
+
* The protocol and host name pairs describing the connection.
|
|
5705
|
+
*/
|
|
5706
|
+
resourceIdentifier?: string | null;
|
|
5707
|
+
}
|
|
5628
5708
|
export interface RetentionDuration extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5629
5709
|
/**
|
|
5630
5710
|
* Stores model information.
|
|
@@ -7087,6 +7167,20 @@ export declare function serializeRegistryKeyEvidence(writer: SerializationWriter
|
|
|
7087
7167
|
* @param writer Serialization writer to use to serialize this model
|
|
7088
7168
|
*/
|
|
7089
7169
|
export declare function serializeRegistryValueEvidence(writer: SerializationWriter, registryValueEvidence?: Partial<RegistryValueEvidence> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7170
|
+
/**
|
|
7171
|
+
* Serializes information the current object
|
|
7172
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7173
|
+
* @param ReportFileMetadata The instance to serialize from.
|
|
7174
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7175
|
+
*/
|
|
7176
|
+
export declare function serializeReportFileMetadata(writer: SerializationWriter, reportFileMetadata?: Partial<ReportFileMetadata> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7177
|
+
/**
|
|
7178
|
+
* Serializes information the current object
|
|
7179
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
7180
|
+
* @param ResourceAccessEvent The instance to serialize from.
|
|
7181
|
+
* @param writer Serialization writer to use to serialize this model
|
|
7182
|
+
*/
|
|
7183
|
+
export declare function serializeResourceAccessEvent(writer: SerializationWriter, resourceAccessEvent?: Partial<ResourceAccessEvent> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
7090
7184
|
/**
|
|
7091
7185
|
* Serializes information the current object
|
|
7092
7186
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -7992,6 +8086,10 @@ export interface UserAccount extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
7992
8086
|
* The OdataType property
|
|
7993
8087
|
*/
|
|
7994
8088
|
odataType?: string | null;
|
|
8089
|
+
/**
|
|
8090
|
+
* Information on resource access attempts made by the user account.
|
|
8091
|
+
*/
|
|
8092
|
+
resourceAccessEvents?: ResourceAccessEvent[] | null;
|
|
7995
8093
|
/**
|
|
7996
8094
|
* The user principal name of the account in Microsoft Entra ID.
|
|
7997
8095
|
*/
|