@microsoft/msgraph-sdk 1.0.0-preview.22 → 1.0.0-preview.23
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 +110 -10
- package/models/index.d.ts.map +1 -1
- package/models/index.js +222 -133
- package/models/security/index.d.ts +134 -0
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +120 -12
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1152,6 +1152,18 @@ export declare function createGitHubUserEvidenceFromDiscriminatorValue(parseNode
|
|
|
1152
1152
|
* @returns {GoogleCloudResourceEvidence}
|
|
1153
1153
|
*/
|
|
1154
1154
|
export declare function createGoogleCloudResourceEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1155
|
+
/**
|
|
1156
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1157
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1158
|
+
* @returns {HealthIssueCollectionResponse}
|
|
1159
|
+
*/
|
|
1160
|
+
export declare function createHealthIssueCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1161
|
+
/**
|
|
1162
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1163
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1164
|
+
* @returns {HealthIssue}
|
|
1165
|
+
*/
|
|
1166
|
+
export declare function createHealthIssueFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1155
1167
|
/**
|
|
1156
1168
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1157
1169
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1296,6 +1308,12 @@ export declare function createHuntingRowResultFromDiscriminatorValue(parseNode:
|
|
|
1296
1308
|
* @returns {Hyperlink}
|
|
1297
1309
|
*/
|
|
1298
1310
|
export declare function createHyperlinkFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1311
|
+
/**
|
|
1312
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1313
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1314
|
+
* @returns {IdentityContainer}
|
|
1315
|
+
*/
|
|
1316
|
+
export declare function createIdentityContainerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1299
1317
|
/**
|
|
1300
1318
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1301
1319
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -2355,6 +2373,16 @@ export declare function deserializeIntoGitHubUserEvidence(gitHubUserEvidence?: P
|
|
|
2355
2373
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2356
2374
|
*/
|
|
2357
2375
|
export declare function deserializeIntoGoogleCloudResourceEvidence(googleCloudResourceEvidence?: Partial<GoogleCloudResourceEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2376
|
+
/**
|
|
2377
|
+
* The deserialization information for the current model
|
|
2378
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2379
|
+
*/
|
|
2380
|
+
export declare function deserializeIntoHealthIssue(healthIssue?: Partial<HealthIssue> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2381
|
+
/**
|
|
2382
|
+
* The deserialization information for the current model
|
|
2383
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2384
|
+
*/
|
|
2385
|
+
export declare function deserializeIntoHealthIssueCollectionResponse(healthIssueCollectionResponse?: Partial<HealthIssueCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2358
2386
|
/**
|
|
2359
2387
|
* The deserialization information for the current model
|
|
2360
2388
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -2475,6 +2503,11 @@ export declare function deserializeIntoHuntingRowResult(huntingRowResult?: Parti
|
|
|
2475
2503
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2476
2504
|
*/
|
|
2477
2505
|
export declare function deserializeIntoHyperlink(hyperlink?: Partial<Hyperlink> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2506
|
+
/**
|
|
2507
|
+
* The deserialization information for the current model
|
|
2508
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2509
|
+
*/
|
|
2510
|
+
export declare function deserializeIntoIdentityContainer(identityContainer?: Partial<IdentityContainer> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2478
2511
|
/**
|
|
2479
2512
|
* The deserialization information for the current model
|
|
2480
2513
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -3762,6 +3795,69 @@ export interface GoogleCloudResourceEvidence extends AlertEvidence, Parsable {
|
|
|
3762
3795
|
*/
|
|
3763
3796
|
resourceType?: string;
|
|
3764
3797
|
}
|
|
3798
|
+
export interface HealthIssue extends Entity, Parsable {
|
|
3799
|
+
/**
|
|
3800
|
+
* The additionalInformation property
|
|
3801
|
+
*/
|
|
3802
|
+
additionalInformation?: string[];
|
|
3803
|
+
/**
|
|
3804
|
+
* The createdDateTime property
|
|
3805
|
+
*/
|
|
3806
|
+
createdDateTime?: Date;
|
|
3807
|
+
/**
|
|
3808
|
+
* The description property
|
|
3809
|
+
*/
|
|
3810
|
+
description?: string;
|
|
3811
|
+
/**
|
|
3812
|
+
* The displayName property
|
|
3813
|
+
*/
|
|
3814
|
+
displayName?: string;
|
|
3815
|
+
/**
|
|
3816
|
+
* The domainNames property
|
|
3817
|
+
*/
|
|
3818
|
+
domainNames?: string[];
|
|
3819
|
+
/**
|
|
3820
|
+
* The healthIssueType property
|
|
3821
|
+
*/
|
|
3822
|
+
healthIssueType?: HealthIssueType;
|
|
3823
|
+
/**
|
|
3824
|
+
* The issueTypeId property
|
|
3825
|
+
*/
|
|
3826
|
+
issueTypeId?: string;
|
|
3827
|
+
/**
|
|
3828
|
+
* The lastModifiedDateTime property
|
|
3829
|
+
*/
|
|
3830
|
+
lastModifiedDateTime?: Date;
|
|
3831
|
+
/**
|
|
3832
|
+
* The recommendations property
|
|
3833
|
+
*/
|
|
3834
|
+
recommendations?: string[];
|
|
3835
|
+
/**
|
|
3836
|
+
* The recommendedActionCommands property
|
|
3837
|
+
*/
|
|
3838
|
+
recommendedActionCommands?: string[];
|
|
3839
|
+
/**
|
|
3840
|
+
* The sensorDNSNames property
|
|
3841
|
+
*/
|
|
3842
|
+
sensorDNSNames?: string[];
|
|
3843
|
+
/**
|
|
3844
|
+
* The severity property
|
|
3845
|
+
*/
|
|
3846
|
+
severity?: HealthIssueSeverity;
|
|
3847
|
+
/**
|
|
3848
|
+
* The status property
|
|
3849
|
+
*/
|
|
3850
|
+
status?: HealthIssueStatus;
|
|
3851
|
+
}
|
|
3852
|
+
export interface HealthIssueCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
3853
|
+
/**
|
|
3854
|
+
* The value property
|
|
3855
|
+
*/
|
|
3856
|
+
value?: HealthIssue[];
|
|
3857
|
+
}
|
|
3858
|
+
export type HealthIssueSeverity = (typeof HealthIssueSeverityObject)[keyof typeof HealthIssueSeverityObject];
|
|
3859
|
+
export type HealthIssueStatus = (typeof HealthIssueStatusObject)[keyof typeof HealthIssueStatusObject];
|
|
3860
|
+
export type HealthIssueType = (typeof HealthIssueTypeObject)[keyof typeof HealthIssueTypeObject];
|
|
3765
3861
|
export interface Host extends Artifact, Parsable {
|
|
3766
3862
|
/**
|
|
3767
3863
|
* The hostPairs that are resources associated with a host, where that host is the parentHost and has an outgoing pairing to a childHost.
|
|
@@ -4254,6 +4350,12 @@ export interface Hyperlink extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
4254
4350
|
*/
|
|
4255
4351
|
url?: string;
|
|
4256
4352
|
}
|
|
4353
|
+
export interface IdentityContainer extends Entity, Parsable {
|
|
4354
|
+
/**
|
|
4355
|
+
* The healthIssues property
|
|
4356
|
+
*/
|
|
4357
|
+
healthIssues?: HealthIssue[];
|
|
4358
|
+
}
|
|
4257
4359
|
export interface Incident extends Entity, Parsable {
|
|
4258
4360
|
/**
|
|
4259
4361
|
* The list of related alerts. Supports $expand.
|
|
@@ -5855,6 +5957,16 @@ export declare function serializeGitHubUserEvidence(writer: SerializationWriter,
|
|
|
5855
5957
|
* @param writer Serialization writer to use to serialize this model
|
|
5856
5958
|
*/
|
|
5857
5959
|
export declare function serializeGoogleCloudResourceEvidence(writer: SerializationWriter, googleCloudResourceEvidence?: Partial<GoogleCloudResourceEvidence> | undefined): void;
|
|
5960
|
+
/**
|
|
5961
|
+
* Serializes information the current object
|
|
5962
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5963
|
+
*/
|
|
5964
|
+
export declare function serializeHealthIssue(writer: SerializationWriter, healthIssue?: Partial<HealthIssue> | undefined): void;
|
|
5965
|
+
/**
|
|
5966
|
+
* Serializes information the current object
|
|
5967
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5968
|
+
*/
|
|
5969
|
+
export declare function serializeHealthIssueCollectionResponse(writer: SerializationWriter, healthIssueCollectionResponse?: Partial<HealthIssueCollectionResponse> | undefined): void;
|
|
5858
5970
|
/**
|
|
5859
5971
|
* Serializes information the current object
|
|
5860
5972
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -5975,6 +6087,11 @@ export declare function serializeHuntingRowResult(writer: SerializationWriter, h
|
|
|
5975
6087
|
* @param writer Serialization writer to use to serialize this model
|
|
5976
6088
|
*/
|
|
5977
6089
|
export declare function serializeHyperlink(writer: SerializationWriter, hyperlink?: Partial<Hyperlink> | undefined): void;
|
|
6090
|
+
/**
|
|
6091
|
+
* Serializes information the current object
|
|
6092
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6093
|
+
*/
|
|
6094
|
+
export declare function serializeIdentityContainer(writer: SerializationWriter, identityContainer?: Partial<IdentityContainer> | undefined): void;
|
|
5978
6095
|
/**
|
|
5979
6096
|
* Serializes information the current object
|
|
5980
6097
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -7430,6 +7547,23 @@ export declare const GoogleCloudLocationTypeObject: {
|
|
|
7430
7547
|
readonly Global: "global";
|
|
7431
7548
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7432
7549
|
};
|
|
7550
|
+
export declare const HealthIssueSeverityObject: {
|
|
7551
|
+
readonly Low: "low";
|
|
7552
|
+
readonly Medium: "medium";
|
|
7553
|
+
readonly High: "high";
|
|
7554
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7555
|
+
};
|
|
7556
|
+
export declare const HealthIssueStatusObject: {
|
|
7557
|
+
readonly Open: "open";
|
|
7558
|
+
readonly Closed: "closed";
|
|
7559
|
+
readonly Suppressed: "suppressed";
|
|
7560
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7561
|
+
};
|
|
7562
|
+
export declare const HealthIssueTypeObject: {
|
|
7563
|
+
readonly Sensor: "sensor";
|
|
7564
|
+
readonly Global: "global";
|
|
7565
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7566
|
+
};
|
|
7433
7567
|
export declare const HostPortProtocolObject: {
|
|
7434
7568
|
readonly Tcp: "tcp";
|
|
7435
7569
|
readonly Udp: "udp";
|