@microsoft/msgraph-sdk 1.0.0-preview.25 → 1.0.0-preview.26
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 +1006 -13
- package/models/index.d.ts.map +1 -1
- package/models/index.js +970 -22
- 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 +60 -1
- package/models/security/index.js.map +1 -1
- package/package.json +3 -5
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -572,6 +572,50 @@ export interface CloudApplicationEvidence extends AlertEvidence, Parsable {
|
|
|
572
572
|
*/
|
|
573
573
|
stream?: Stream;
|
|
574
574
|
}
|
|
575
|
+
export interface CloudLogonRequestEvidence extends AlertEvidence, Parsable {
|
|
576
|
+
/**
|
|
577
|
+
* The unique identifier for the sign-in request.
|
|
578
|
+
*/
|
|
579
|
+
requestId?: string;
|
|
580
|
+
}
|
|
581
|
+
export interface CloudLogonSessionEvidence extends AlertEvidence, Parsable {
|
|
582
|
+
/**
|
|
583
|
+
* The account associated with the sign-in session.
|
|
584
|
+
*/
|
|
585
|
+
account?: UserEvidence;
|
|
586
|
+
/**
|
|
587
|
+
* The browser that is used for the sign-in, if known.
|
|
588
|
+
*/
|
|
589
|
+
browser?: string;
|
|
590
|
+
/**
|
|
591
|
+
* The friendly name of the device, if known.
|
|
592
|
+
*/
|
|
593
|
+
deviceName?: string;
|
|
594
|
+
/**
|
|
595
|
+
* The operating system that the device is running, if known.
|
|
596
|
+
*/
|
|
597
|
+
operatingSystem?: string;
|
|
598
|
+
/**
|
|
599
|
+
* The previous sign-in time for this account, if known.
|
|
600
|
+
*/
|
|
601
|
+
previousLogonDateTime?: Date;
|
|
602
|
+
/**
|
|
603
|
+
* The authentication protocol that is used in this session, if known.
|
|
604
|
+
*/
|
|
605
|
+
protocol?: string;
|
|
606
|
+
/**
|
|
607
|
+
* The session ID for the account reported in the alert.
|
|
608
|
+
*/
|
|
609
|
+
sessionId?: string;
|
|
610
|
+
/**
|
|
611
|
+
* The session start time, if known.
|
|
612
|
+
*/
|
|
613
|
+
startUtcDateTime?: Date;
|
|
614
|
+
/**
|
|
615
|
+
* The user agent that is used for the sign-in, if known.
|
|
616
|
+
*/
|
|
617
|
+
userAgent?: string;
|
|
618
|
+
}
|
|
575
619
|
export interface ContainerEvidence extends AlertEvidence, Parsable {
|
|
576
620
|
/**
|
|
577
621
|
* The list of arguments.
|
|
@@ -780,6 +824,18 @@ export declare function createCitationTemplateFromDiscriminatorValue(parseNode:
|
|
|
780
824
|
* @returns {CloudApplicationEvidence}
|
|
781
825
|
*/
|
|
782
826
|
export declare function createCloudApplicationEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
827
|
+
/**
|
|
828
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
829
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
830
|
+
* @returns {CloudLogonRequestEvidence}
|
|
831
|
+
*/
|
|
832
|
+
export declare function createCloudLogonRequestEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
833
|
+
/**
|
|
834
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
835
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
836
|
+
* @returns {CloudLogonSessionEvidence}
|
|
837
|
+
*/
|
|
838
|
+
export declare function createCloudLogonSessionEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
783
839
|
/**
|
|
784
840
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
785
841
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -2063,6 +2119,16 @@ export declare function deserializeIntoCitationTemplateCollectionResponse(citati
|
|
|
2063
2119
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2064
2120
|
*/
|
|
2065
2121
|
export declare function deserializeIntoCloudApplicationEvidence(cloudApplicationEvidence?: Partial<CloudApplicationEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2122
|
+
/**
|
|
2123
|
+
* The deserialization information for the current model
|
|
2124
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2125
|
+
*/
|
|
2126
|
+
export declare function deserializeIntoCloudLogonRequestEvidence(cloudLogonRequestEvidence?: Partial<CloudLogonRequestEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2127
|
+
/**
|
|
2128
|
+
* The deserialization information for the current model
|
|
2129
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2130
|
+
*/
|
|
2131
|
+
export declare function deserializeIntoCloudLogonSessionEvidence(cloudLogonSessionEvidence?: Partial<CloudLogonSessionEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2066
2132
|
/**
|
|
2067
2133
|
* The deserialization information for the current model
|
|
2068
2134
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -4421,6 +4487,10 @@ export interface Incident extends Entity, Parsable {
|
|
|
4421
4487
|
* The status property
|
|
4422
4488
|
*/
|
|
4423
4489
|
status?: IncidentStatus;
|
|
4490
|
+
/**
|
|
4491
|
+
* The overview of an attack. When applicable, the summary contains details of what occurred, impacted assets, and the type of attack.
|
|
4492
|
+
*/
|
|
4493
|
+
summary?: string;
|
|
4424
4494
|
/**
|
|
4425
4495
|
* The system tags associated with the incident.
|
|
4426
4496
|
*/
|
|
@@ -5647,6 +5717,16 @@ export declare function serializeCitationTemplateCollectionResponse(writer: Seri
|
|
|
5647
5717
|
* @param writer Serialization writer to use to serialize this model
|
|
5648
5718
|
*/
|
|
5649
5719
|
export declare function serializeCloudApplicationEvidence(writer: SerializationWriter, cloudApplicationEvidence?: Partial<CloudApplicationEvidence> | undefined): void;
|
|
5720
|
+
/**
|
|
5721
|
+
* Serializes information the current object
|
|
5722
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5723
|
+
*/
|
|
5724
|
+
export declare function serializeCloudLogonRequestEvidence(writer: SerializationWriter, cloudLogonRequestEvidence?: Partial<CloudLogonRequestEvidence> | undefined): void;
|
|
5725
|
+
/**
|
|
5726
|
+
* Serializes information the current object
|
|
5727
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5728
|
+
*/
|
|
5729
|
+
export declare function serializeCloudLogonSessionEvidence(writer: SerializationWriter, cloudLogonSessionEvidence?: Partial<CloudLogonSessionEvidence> | undefined): void;
|
|
5650
5730
|
/**
|
|
5651
5731
|
* Serializes information the current object
|
|
5652
5732
|
* @param writer Serialization writer to use to serialize this model
|