@microsoft/msgraph-sdk 1.0.0-preview.68 → 1.0.0-preview.70
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 +20 -8
- package/models/index.d.ts.map +1 -1
- package/models/index.js +11 -7
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +41 -1
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +20 -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
package/models/security/index.js
CHANGED
|
@@ -2724,7 +2724,7 @@ export function deserializeIntoEdiscoveryCaseCollectionResponse(ediscoveryCaseCo
|
|
|
2724
2724
|
*/
|
|
2725
2725
|
// @ts-ignore
|
|
2726
2726
|
export function deserializeIntoEdiscoveryCaseSettings(ediscoveryCaseSettings = {}) {
|
|
2727
|
-
return Object.assign(Object.assign({}, deserializeIntoEntity(ediscoveryCaseSettings)), { "ocr": n => { ediscoveryCaseSettings.ocr = n.getObjectValue(createOcrSettingsFromDiscriminatorValue); }, "redundancyDetection": n => { ediscoveryCaseSettings.redundancyDetection = n.getObjectValue(createRedundancyDetectionSettingsFromDiscriminatorValue); }, "topicModeling": n => { ediscoveryCaseSettings.topicModeling = n.getObjectValue(createTopicModelingSettingsFromDiscriminatorValue); } });
|
|
2727
|
+
return Object.assign(Object.assign({}, deserializeIntoEntity(ediscoveryCaseSettings)), { "caseType": n => { ediscoveryCaseSettings.caseType = n.getEnumValue(CaseTypeObject); }, "ocr": n => { ediscoveryCaseSettings.ocr = n.getObjectValue(createOcrSettingsFromDiscriminatorValue); }, "redundancyDetection": n => { ediscoveryCaseSettings.redundancyDetection = n.getObjectValue(createRedundancyDetectionSettingsFromDiscriminatorValue); }, "reviewSetSettings": n => { ediscoveryCaseSettings.reviewSetSettings = n.getCollectionOfEnumValues(ReviewSetSettingsObject); }, "topicModeling": n => { ediscoveryCaseSettings.topicModeling = n.getObjectValue(createTopicModelingSettingsFromDiscriminatorValue); } });
|
|
2728
2728
|
}
|
|
2729
2729
|
/**
|
|
2730
2730
|
* The deserialization information for the current model
|
|
@@ -3975,7 +3975,7 @@ export function deserializeIntoSearch(search = {}) {
|
|
|
3975
3975
|
*/
|
|
3976
3976
|
// @ts-ignore
|
|
3977
3977
|
export function deserializeIntoSecurityGroupEvidence(securityGroupEvidence = {}) {
|
|
3978
|
-
return Object.assign(Object.assign({}, deserializeIntoAlertEvidence(securityGroupEvidence)), { "displayName": n => { securityGroupEvidence.displayName = n.getStringValue(); }, "securityGroupId": n => { securityGroupEvidence.securityGroupId = n.getStringValue(); } });
|
|
3978
|
+
return Object.assign(Object.assign({}, deserializeIntoAlertEvidence(securityGroupEvidence)), { "activeDirectoryObjectGuid": n => { securityGroupEvidence.activeDirectoryObjectGuid = n.getGuidValue(); }, "displayName": n => { securityGroupEvidence.displayName = n.getStringValue(); }, "distinguishedName": n => { securityGroupEvidence.distinguishedName = n.getStringValue(); }, "friendlyName": n => { securityGroupEvidence.friendlyName = n.getStringValue(); }, "securityGroupId": n => { securityGroupEvidence.securityGroupId = n.getStringValue(); }, "sid": n => { securityGroupEvidence.sid = n.getStringValue(); } });
|
|
3979
3979
|
}
|
|
3980
3980
|
/**
|
|
3981
3981
|
* The deserialization information for the current model
|
|
@@ -4269,6 +4269,7 @@ export function deserializeIntoUrlEvidence(urlEvidence = {}) {
|
|
|
4269
4269
|
export function deserializeIntoUserAccount(userAccount = {}) {
|
|
4270
4270
|
return {
|
|
4271
4271
|
"accountName": n => { userAccount.accountName = n.getStringValue(); },
|
|
4272
|
+
"activeDirectoryObjectGuid": n => { userAccount.activeDirectoryObjectGuid = n.getGuidValue(); },
|
|
4272
4273
|
"azureAdUserId": n => { userAccount.azureAdUserId = n.getStringValue(); },
|
|
4273
4274
|
"backingStoreEnabled": n => { userAccount.backingStoreEnabled = true; },
|
|
4274
4275
|
"displayName": n => { userAccount.displayName = n.getStringValue(); },
|
|
@@ -5500,8 +5501,10 @@ export function serializeEdiscoveryCaseSettings(writer, ediscoveryCaseSettings =
|
|
|
5500
5501
|
return;
|
|
5501
5502
|
}
|
|
5502
5503
|
serializeEntity(writer, ediscoveryCaseSettings, isSerializingDerivedType);
|
|
5504
|
+
writer.writeEnumValue("caseType", ediscoveryCaseSettings.caseType);
|
|
5503
5505
|
writer.writeObjectValue("ocr", ediscoveryCaseSettings.ocr, serializeOcrSettings);
|
|
5504
5506
|
writer.writeObjectValue("redundancyDetection", ediscoveryCaseSettings.redundancyDetection, serializeRedundancyDetectionSettings);
|
|
5507
|
+
writer.writeEnumValue("reviewSetSettings", ediscoveryCaseSettings.reviewSetSettings);
|
|
5505
5508
|
writer.writeObjectValue("topicModeling", ediscoveryCaseSettings.topicModeling, serializeTopicModelingSettings);
|
|
5506
5509
|
}
|
|
5507
5510
|
/**
|
|
@@ -7670,8 +7673,12 @@ export function serializeSecurityGroupEvidence(writer, securityGroupEvidence = {
|
|
|
7670
7673
|
return;
|
|
7671
7674
|
}
|
|
7672
7675
|
serializeAlertEvidence(writer, securityGroupEvidence, isSerializingDerivedType);
|
|
7676
|
+
writer.writeGuidValue("activeDirectoryObjectGuid", securityGroupEvidence.activeDirectoryObjectGuid);
|
|
7673
7677
|
writer.writeStringValue("displayName", securityGroupEvidence.displayName);
|
|
7678
|
+
writer.writeStringValue("distinguishedName", securityGroupEvidence.distinguishedName);
|
|
7679
|
+
writer.writeStringValue("friendlyName", securityGroupEvidence.friendlyName);
|
|
7674
7680
|
writer.writeStringValue("securityGroupId", securityGroupEvidence.securityGroupId);
|
|
7681
|
+
writer.writeStringValue("sid", securityGroupEvidence.sid);
|
|
7675
7682
|
}
|
|
7676
7683
|
/**
|
|
7677
7684
|
* Serializes information the current object
|
|
@@ -8165,6 +8172,7 @@ export function serializeUserAccount(writer, userAccount = {}, isSerializingDeri
|
|
|
8165
8172
|
return;
|
|
8166
8173
|
}
|
|
8167
8174
|
writer.writeStringValue("accountName", userAccount.accountName);
|
|
8175
|
+
writer.writeGuidValue("activeDirectoryObjectGuid", userAccount.activeDirectoryObjectGuid);
|
|
8168
8176
|
writer.writeStringValue("azureAdUserId", userAccount.azureAdUserId);
|
|
8169
8177
|
writer.writeStringValue("displayName", userAccount.displayName);
|
|
8170
8178
|
writer.writeStringValue("domainName", userAccount.domainName);
|
|
@@ -8560,6 +8568,11 @@ export const CaseStatusObject = {
|
|
|
8560
8568
|
ClosedWithError: "closedWithError",
|
|
8561
8569
|
UnknownFutureValue: "unknownFutureValue",
|
|
8562
8570
|
};
|
|
8571
|
+
export const CaseTypeObject = {
|
|
8572
|
+
Standard: "standard",
|
|
8573
|
+
Premium: "premium",
|
|
8574
|
+
UnknownFutureValue: "unknownFutureValue",
|
|
8575
|
+
};
|
|
8563
8576
|
export const ChildSelectabilityObject = {
|
|
8564
8577
|
One: "One",
|
|
8565
8578
|
Many: "Many",
|
|
@@ -8933,6 +8946,11 @@ export const RetentionTriggerObject = {
|
|
|
8933
8946
|
DateOfEvent: "dateOfEvent",
|
|
8934
8947
|
UnknownFutureValue: "unknownFutureValue",
|
|
8935
8948
|
};
|
|
8949
|
+
export const ReviewSetSettingsObject = {
|
|
8950
|
+
None: "none",
|
|
8951
|
+
DisableGrouping: "disableGrouping",
|
|
8952
|
+
UnknownFutureValue: "unknownFutureValue",
|
|
8953
|
+
};
|
|
8936
8954
|
export const SensorHealthStatusObject = {
|
|
8937
8955
|
Healthy: "healthy",
|
|
8938
8956
|
NotHealthyLow: "notHealthyLow",
|