@microsoft/msgraph-sdk-security 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/msgraph-sdk-security",
3
- "version": "1.0.0-preview.22",
3
+ "version": "1.0.0-preview.23",
4
4
  "description": "Security fluent API for Microsoft Graph",
5
5
  "keywords": [
6
6
  "Microsoft",
@@ -37,12 +37,12 @@
37
37
  "@microsoft/kiota-serialization-json": "^1.0.0-preview.39",
38
38
  "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.18",
39
39
  "@microsoft/kiota-serialization-text": "^1.0.0-preview.36",
40
- "@microsoft/msgraph-sdk": "^1.0.0-preview.22",
40
+ "@microsoft/msgraph-sdk": "^1.0.0-preview.23",
41
41
  "guid-typescript": "^1.0.9",
42
42
  "tslib": "^2.6.2"
43
43
  },
44
44
  "devDependencies": {
45
45
  "typescript": "^5.3.3"
46
46
  },
47
- "gitHead": "d41363478d26ba2bcde02901bb2983793b286bdf"
47
+ "gitHead": "70d41d4e29d7de7555b8aa856bc2b7ea590ea6a5"
48
48
  }
@@ -0,0 +1,41 @@
1
+ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
2
+ /**
3
+ * Provides operations to count the resources in the collection.
4
+ */
5
+ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuilder> {
6
+ /**
7
+ * Get the number of the resource
8
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9
+ * @returns {Promise<number>}
10
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
11
+ */
12
+ get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
13
+ /**
14
+ * Get the number of the resource
15
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
16
+ * @returns {RequestInformation}
17
+ */
18
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): RequestInformation;
19
+ }
20
+ /**
21
+ * Get the number of the resource
22
+ */
23
+ export interface CountRequestBuilderGetQueryParameters {
24
+ /**
25
+ * Filter items by property values
26
+ */
27
+ filter?: string;
28
+ /**
29
+ * Search items by search phrases
30
+ */
31
+ search?: string;
32
+ }
33
+ /**
34
+ * Uri template for the request builder.
35
+ */
36
+ export declare const CountRequestBuilderUriTemplate = "{+baseurl}/security/identities/healthIssues/$count{?%24filter,%24search}";
37
+ /**
38
+ * Metadata for all the requests in the request builder.
39
+ */
40
+ export declare const CountRequestBuilderRequestsMetadata: RequestsMetadata;
41
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACnI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;AACD;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AACD;;GAEG;AACH,eAAO,MAAM,8BAA8B,6EAA6E,CAAC;AAQzH;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBAWjD,CAAC"}
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CountRequestBuilderRequestsMetadata = exports.CountRequestBuilderUriTemplate = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ // @ts-ignore
8
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
9
+ /**
10
+ * Uri template for the request builder.
11
+ */
12
+ exports.CountRequestBuilderUriTemplate = "{+baseurl}/security/identities/healthIssues/$count{?%24filter,%24search}";
13
+ /**
14
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
15
+ */
16
+ const CountRequestBuilderGetQueryParametersMapper = {
17
+ "filter": "%24filter",
18
+ "search": "%24search",
19
+ };
20
+ /**
21
+ * Metadata for all the requests in the request builder.
22
+ */
23
+ exports.CountRequestBuilderRequestsMetadata = {
24
+ get: {
25
+ uriTemplate: exports.CountRequestBuilderUriTemplate,
26
+ responseBodyContentType: "text/plain;q=0.9",
27
+ errorMappings: {
28
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
29
+ },
30
+ adapterMethodName: "sendPrimitive",
31
+ responseBodyFactory: "number",
32
+ queryParametersMapper: CountRequestBuilderGetQueryParametersMapper,
33
+ },
34
+ };
35
+ /* tslint:enable */
36
+ /* eslint-enable */
@@ -0,0 +1,97 @@
1
+ import { type HealthIssue, type HealthIssueCollectionResponse } from '@microsoft/msgraph-sdk/models/security/';
2
+ import { type CountRequestBuilder } from './count/';
3
+ import { type HealthIssueItemRequestBuilder } from './item/';
4
+ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
5
+ /**
6
+ * Provides operations to manage the healthIssues property of the microsoft.graph.security.identityContainer entity.
7
+ */
8
+ export interface HealthIssuesRequestBuilder extends BaseRequestBuilder<HealthIssuesRequestBuilder> {
9
+ /**
10
+ * Provides operations to count the resources in the collection.
11
+ */
12
+ get count(): CountRequestBuilder;
13
+ /**
14
+ * Provides operations to manage the healthIssues property of the microsoft.graph.security.identityContainer entity.
15
+ * @param healthIssueId The unique identifier of healthIssue
16
+ * @returns {HealthIssueItemRequestBuilder}
17
+ */
18
+ byHealthIssueId(healthIssueId: string): HealthIssueItemRequestBuilder;
19
+ /**
20
+ * Get healthIssues from security
21
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
+ * @returns {Promise<HealthIssueCollectionResponse>}
23
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
24
+ */
25
+ get(requestConfiguration?: RequestConfiguration<HealthIssuesRequestBuilderGetQueryParameters> | undefined): Promise<HealthIssueCollectionResponse | undefined>;
26
+ /**
27
+ * Create new navigation property to healthIssues for security
28
+ * @param body The request body
29
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
30
+ * @returns {Promise<HealthIssue>}
31
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
32
+ */
33
+ post(body: HealthIssue, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<HealthIssue | undefined>;
34
+ /**
35
+ * Get healthIssues from security
36
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
37
+ * @returns {RequestInformation}
38
+ */
39
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<HealthIssuesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
40
+ /**
41
+ * Create new navigation property to healthIssues for security
42
+ * @param body The request body
43
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
44
+ * @returns {RequestInformation}
45
+ */
46
+ toPostRequestInformation(body: HealthIssue, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
47
+ }
48
+ /**
49
+ * Get healthIssues from security
50
+ */
51
+ export interface HealthIssuesRequestBuilderGetQueryParameters {
52
+ /**
53
+ * Include count of items
54
+ */
55
+ count?: boolean;
56
+ /**
57
+ * Expand related entities
58
+ */
59
+ expand?: string[];
60
+ /**
61
+ * Filter items by property values
62
+ */
63
+ filter?: string;
64
+ /**
65
+ * Order items by property values
66
+ */
67
+ orderby?: string[];
68
+ /**
69
+ * Search items by search phrases
70
+ */
71
+ search?: string;
72
+ /**
73
+ * Select properties to be returned
74
+ */
75
+ select?: string[];
76
+ /**
77
+ * Skip the first n items
78
+ */
79
+ skip?: number;
80
+ /**
81
+ * Show only the first n items
82
+ */
83
+ top?: number;
84
+ }
85
+ /**
86
+ * Uri template for the request builder.
87
+ */
88
+ export declare const HealthIssuesRequestBuilderUriTemplate = "{+baseurl}/security/identities/healthIssues{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
89
+ /**
90
+ * Metadata for all the navigation properties in the request builder.
91
+ */
92
+ export declare const HealthIssuesRequestBuilderNavigationMetadata: Record<Exclude<keyof HealthIssuesRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
93
+ /**
94
+ * Metadata for all the requests in the request builder.
95
+ */
96
+ export declare const HealthIssuesRequestBuilderRequestsMetadata: RequestsMetadata;
97
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAMA,OAAO,EAA4H,KAAK,WAAW,EAAE,KAAK,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AAEzO,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAiD,KAAK,6BAA6B,EAAE,MAAM,SAAS,CAAC;AAE5G,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,0BAA2B,SAAQ,kBAAkB,CAAC,0BAA0B,CAAC;IAC9F;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,eAAe,CAAC,aAAa,EAAE,MAAM,GAAI,6BAA6B,CAAC;IACxE;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,4CAA4C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,6BAA6B,GAAG,SAAS,CAAC,CAAC;IACjK;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IAC7H;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,4CAA4C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACrJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,WAAW,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACtI;AACD;;GAEG;AACH,MAAM,WAAW,4CAA4C;IACzD;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,qCAAqC,6HAA6H,CAAC;AAchL;;GAEG;AACH,eAAO,MAAM,4CAA4C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,0BAA0B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQlK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,0CAA0C,EAAE,gBAuBxD,CAAC"}
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HealthIssuesRequestBuilderRequestsMetadata = exports.HealthIssuesRequestBuilderNavigationMetadata = exports.HealthIssuesRequestBuilderUriTemplate = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ // @ts-ignore
8
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
9
+ // @ts-ignore
10
+ const security_1 = require("@microsoft/msgraph-sdk/models/security/");
11
+ // @ts-ignore
12
+ const count_1 = require("./count/");
13
+ // @ts-ignore
14
+ const item_1 = require("./item/");
15
+ /**
16
+ * Uri template for the request builder.
17
+ */
18
+ exports.HealthIssuesRequestBuilderUriTemplate = "{+baseurl}/security/identities/healthIssues{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
19
+ /**
20
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
21
+ */
22
+ const HealthIssuesRequestBuilderGetQueryParametersMapper = {
23
+ "count": "%24count",
24
+ "expand": "%24expand",
25
+ "filter": "%24filter",
26
+ "orderby": "%24orderby",
27
+ "search": "%24search",
28
+ "select": "%24select",
29
+ "skip": "%24skip",
30
+ "top": "%24top",
31
+ };
32
+ /**
33
+ * Metadata for all the navigation properties in the request builder.
34
+ */
35
+ exports.HealthIssuesRequestBuilderNavigationMetadata = {
36
+ byHealthIssueId: {
37
+ requestsMetadata: item_1.HealthIssueItemRequestBuilderRequestsMetadata,
38
+ pathParametersMappings: ["healthIssue%2Did"],
39
+ },
40
+ count: {
41
+ requestsMetadata: count_1.CountRequestBuilderRequestsMetadata,
42
+ },
43
+ };
44
+ /**
45
+ * Metadata for all the requests in the request builder.
46
+ */
47
+ exports.HealthIssuesRequestBuilderRequestsMetadata = {
48
+ get: {
49
+ uriTemplate: exports.HealthIssuesRequestBuilderUriTemplate,
50
+ responseBodyContentType: "application/json",
51
+ errorMappings: {
52
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
53
+ },
54
+ adapterMethodName: "send",
55
+ responseBodyFactory: security_1.createHealthIssueCollectionResponseFromDiscriminatorValue,
56
+ queryParametersMapper: HealthIssuesRequestBuilderGetQueryParametersMapper,
57
+ },
58
+ post: {
59
+ uriTemplate: exports.HealthIssuesRequestBuilderUriTemplate,
60
+ responseBodyContentType: "application/json",
61
+ errorMappings: {
62
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
63
+ },
64
+ adapterMethodName: "send",
65
+ responseBodyFactory: security_1.createHealthIssueFromDiscriminatorValue,
66
+ requestBodyContentType: "application/json",
67
+ requestBodySerializer: security_1.serializeHealthIssue,
68
+ requestInformationContentSetMethod: "setContentFromParsable",
69
+ },
70
+ };
71
+ /* tslint:enable */
72
+ /* eslint-enable */
@@ -0,0 +1,69 @@
1
+ import { type HealthIssue } from '@microsoft/msgraph-sdk/models/security/';
2
+ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
3
+ /**
4
+ * Provides operations to manage the healthIssues property of the microsoft.graph.security.identityContainer entity.
5
+ */
6
+ export interface HealthIssueItemRequestBuilder extends BaseRequestBuilder<HealthIssueItemRequestBuilder> {
7
+ /**
8
+ * Delete navigation property healthIssues for security
9
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
11
+ */
12
+ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
13
+ /**
14
+ * Get healthIssues from security
15
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
16
+ * @returns {Promise<HealthIssue>}
17
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
18
+ */
19
+ get(requestConfiguration?: RequestConfiguration<HealthIssueItemRequestBuilderGetQueryParameters> | undefined): Promise<HealthIssue | undefined>;
20
+ /**
21
+ * Update the navigation property healthIssues in security
22
+ * @param body The request body
23
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
24
+ * @returns {Promise<HealthIssue>}
25
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
26
+ */
27
+ patch(body: HealthIssue, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<HealthIssue | undefined>;
28
+ /**
29
+ * Delete navigation property healthIssues for security
30
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
31
+ * @returns {RequestInformation}
32
+ */
33
+ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
34
+ /**
35
+ * Get healthIssues from security
36
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
37
+ * @returns {RequestInformation}
38
+ */
39
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<HealthIssueItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
40
+ /**
41
+ * Update the navigation property healthIssues in security
42
+ * @param body The request body
43
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
44
+ * @returns {RequestInformation}
45
+ */
46
+ toPatchRequestInformation(body: HealthIssue, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
47
+ }
48
+ /**
49
+ * Get healthIssues from security
50
+ */
51
+ export interface HealthIssueItemRequestBuilderGetQueryParameters {
52
+ /**
53
+ * Expand related entities
54
+ */
55
+ expand?: string[];
56
+ /**
57
+ * Select properties to be returned
58
+ */
59
+ select?: string[];
60
+ }
61
+ /**
62
+ * Uri template for the request builder.
63
+ */
64
+ export declare const HealthIssueItemRequestBuilderUriTemplate = "{+baseurl}/security/identities/healthIssues/{healthIssue%2Did}{?%24expand,%24select}";
65
+ /**
66
+ * Metadata for all the requests in the request builder.
67
+ */
68
+ export declare const HealthIssueItemRequestBuilderRequestsMetadata: RequestsMetadata;
69
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAiE,KAAK,WAAW,EAAE,MAAM,yCAAyC,CAAC;AAE1I,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,+CAA+C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IAClJ;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,WAAW,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IAC9H;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,+CAA+C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACxJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,WAAW,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACvI;AACD;;GAEG;AACH,MAAM,WAAW,+CAA+C;IAC5D;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,wCAAwC,yFAAyF,CAAC;AAQ/I;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,gBA+B3D,CAAC"}
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HealthIssueItemRequestBuilderRequestsMetadata = exports.HealthIssueItemRequestBuilderUriTemplate = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ // @ts-ignore
8
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
9
+ // @ts-ignore
10
+ const security_1 = require("@microsoft/msgraph-sdk/models/security/");
11
+ /**
12
+ * Uri template for the request builder.
13
+ */
14
+ exports.HealthIssueItemRequestBuilderUriTemplate = "{+baseurl}/security/identities/healthIssues/{healthIssue%2Did}{?%24expand,%24select}";
15
+ /**
16
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
17
+ */
18
+ const HealthIssueItemRequestBuilderGetQueryParametersMapper = {
19
+ "expand": "%24expand",
20
+ "select": "%24select",
21
+ };
22
+ /**
23
+ * Metadata for all the requests in the request builder.
24
+ */
25
+ exports.HealthIssueItemRequestBuilderRequestsMetadata = {
26
+ delete: {
27
+ uriTemplate: exports.HealthIssueItemRequestBuilderUriTemplate,
28
+ responseBodyContentType: "application/json",
29
+ errorMappings: {
30
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
31
+ },
32
+ adapterMethodName: "sendNoResponseContent",
33
+ },
34
+ get: {
35
+ uriTemplate: exports.HealthIssueItemRequestBuilderUriTemplate,
36
+ responseBodyContentType: "application/json",
37
+ errorMappings: {
38
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
39
+ },
40
+ adapterMethodName: "send",
41
+ responseBodyFactory: security_1.createHealthIssueFromDiscriminatorValue,
42
+ queryParametersMapper: HealthIssueItemRequestBuilderGetQueryParametersMapper,
43
+ },
44
+ patch: {
45
+ uriTemplate: exports.HealthIssueItemRequestBuilderUriTemplate,
46
+ responseBodyContentType: "application/json",
47
+ errorMappings: {
48
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
49
+ },
50
+ adapterMethodName: "send",
51
+ responseBodyFactory: security_1.createHealthIssueFromDiscriminatorValue,
52
+ requestBodyContentType: "application/json",
53
+ requestBodySerializer: security_1.serializeHealthIssue,
54
+ requestInformationContentSetMethod: "setContentFromParsable",
55
+ },
56
+ };
57
+ /* tslint:enable */
58
+ /* eslint-enable */
@@ -0,0 +1,78 @@
1
+ import { type IdentityContainer } from '@microsoft/msgraph-sdk/models/security/';
2
+ import { type HealthIssuesRequestBuilder } from './healthIssues/';
3
+ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
4
+ /**
5
+ * Provides operations to manage the identities property of the microsoft.graph.security entity.
6
+ */
7
+ export interface IdentitiesRequestBuilder extends BaseRequestBuilder<IdentitiesRequestBuilder> {
8
+ /**
9
+ * Provides operations to manage the healthIssues property of the microsoft.graph.security.identityContainer entity.
10
+ */
11
+ get healthIssues(): HealthIssuesRequestBuilder;
12
+ /**
13
+ * Delete navigation property identities for security
14
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
15
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
16
+ */
17
+ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
18
+ /**
19
+ * Get identities from security
20
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
21
+ * @returns {Promise<IdentityContainer>}
22
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
23
+ */
24
+ get(requestConfiguration?: RequestConfiguration<IdentitiesRequestBuilderGetQueryParameters> | undefined): Promise<IdentityContainer | undefined>;
25
+ /**
26
+ * Update the navigation property identities in security
27
+ * @param body The request body
28
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
29
+ * @returns {Promise<IdentityContainer>}
30
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
31
+ */
32
+ patch(body: IdentityContainer, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<IdentityContainer | undefined>;
33
+ /**
34
+ * Delete navigation property identities for security
35
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
36
+ * @returns {RequestInformation}
37
+ */
38
+ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
39
+ /**
40
+ * Get identities from security
41
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
42
+ * @returns {RequestInformation}
43
+ */
44
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<IdentitiesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
45
+ /**
46
+ * Update the navigation property identities in security
47
+ * @param body The request body
48
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
49
+ * @returns {RequestInformation}
50
+ */
51
+ toPatchRequestInformation(body: IdentityContainer, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
52
+ }
53
+ /**
54
+ * Get identities from security
55
+ */
56
+ export interface IdentitiesRequestBuilderGetQueryParameters {
57
+ /**
58
+ * Expand related entities
59
+ */
60
+ expand?: string[];
61
+ /**
62
+ * Select properties to be returned
63
+ */
64
+ select?: string[];
65
+ }
66
+ /**
67
+ * Uri template for the request builder.
68
+ */
69
+ export declare const IdentitiesRequestBuilderUriTemplate = "{+baseurl}/security/identities{?%24expand,%24select}";
70
+ /**
71
+ * Metadata for all the navigation properties in the request builder.
72
+ */
73
+ export declare const IdentitiesRequestBuilderNavigationMetadata: Record<Exclude<keyof IdentitiesRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
74
+ /**
75
+ * Metadata for all the requests in the request builder.
76
+ */
77
+ export declare const IdentitiesRequestBuilderRequestsMetadata: RequestsMetadata;
78
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAMA,OAAO,EAA6E,KAAK,iBAAiB,EAAE,MAAM,yCAAyC,CAAC;AAE5J,OAAO,EAA4F,KAAK,0BAA0B,EAAE,MAAM,iBAAiB,CAAC;AAE5J,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,wBAAyB,SAAQ,kBAAkB,CAAC,wBAAwB,CAAC;IAC1F;;OAEG;IACH,IAAI,YAAY,IAAI,0BAA0B,CAAC;IAC/C;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,0CAA0C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iBAAiB,GAAG,SAAS,CAAC,CAAC;IACnJ;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,iBAAiB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iBAAiB,GAAG,SAAS,CAAC,CAAC;IAC1I;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,0CAA0C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACnJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,iBAAiB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC7I;AACD;;GAEG;AACH,MAAM,WAAW,0CAA0C;IACvD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,mCAAmC,yDAAyD,CAAC;AAQ1G;;GAEG;AACH,eAAO,MAAM,0CAA0C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,wBAAwB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAK9J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,wCAAwC,EAAE,gBA+BtD,CAAC"}
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IdentitiesRequestBuilderRequestsMetadata = exports.IdentitiesRequestBuilderNavigationMetadata = exports.IdentitiesRequestBuilderUriTemplate = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ // @ts-ignore
8
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
9
+ // @ts-ignore
10
+ const security_1 = require("@microsoft/msgraph-sdk/models/security/");
11
+ // @ts-ignore
12
+ const healthIssues_1 = require("./healthIssues/");
13
+ /**
14
+ * Uri template for the request builder.
15
+ */
16
+ exports.IdentitiesRequestBuilderUriTemplate = "{+baseurl}/security/identities{?%24expand,%24select}";
17
+ /**
18
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
19
+ */
20
+ const IdentitiesRequestBuilderGetQueryParametersMapper = {
21
+ "expand": "%24expand",
22
+ "select": "%24select",
23
+ };
24
+ /**
25
+ * Metadata for all the navigation properties in the request builder.
26
+ */
27
+ exports.IdentitiesRequestBuilderNavigationMetadata = {
28
+ healthIssues: {
29
+ requestsMetadata: healthIssues_1.HealthIssuesRequestBuilderRequestsMetadata,
30
+ navigationMetadata: healthIssues_1.HealthIssuesRequestBuilderNavigationMetadata,
31
+ },
32
+ };
33
+ /**
34
+ * Metadata for all the requests in the request builder.
35
+ */
36
+ exports.IdentitiesRequestBuilderRequestsMetadata = {
37
+ delete: {
38
+ uriTemplate: exports.IdentitiesRequestBuilderUriTemplate,
39
+ responseBodyContentType: "application/json",
40
+ errorMappings: {
41
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
42
+ },
43
+ adapterMethodName: "sendNoResponseContent",
44
+ },
45
+ get: {
46
+ uriTemplate: exports.IdentitiesRequestBuilderUriTemplate,
47
+ responseBodyContentType: "application/json",
48
+ errorMappings: {
49
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
50
+ },
51
+ adapterMethodName: "send",
52
+ responseBodyFactory: security_1.createIdentityContainerFromDiscriminatorValue,
53
+ queryParametersMapper: IdentitiesRequestBuilderGetQueryParametersMapper,
54
+ },
55
+ patch: {
56
+ uriTemplate: exports.IdentitiesRequestBuilderUriTemplate,
57
+ responseBodyContentType: "application/json",
58
+ errorMappings: {
59
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
60
+ },
61
+ adapterMethodName: "send",
62
+ responseBodyFactory: security_1.createIdentityContainerFromDiscriminatorValue,
63
+ requestBodyContentType: "application/json",
64
+ requestBodySerializer: security_1.serializeIdentityContainer,
65
+ requestInformationContentSetMethod: "setContentFromParsable",
66
+ },
67
+ };
68
+ /* tslint:enable */
69
+ /* eslint-enable */
@@ -3,6 +3,7 @@ import { type Alerts_v2RequestBuilder } from './alerts_v2/';
3
3
  import { type AlertsRequestBuilder } from './alerts/';
4
4
  import { type AttackSimulationRequestBuilder } from './attackSimulation/';
5
5
  import { type CasesRequestBuilder } from './cases/';
6
+ import { type IdentitiesRequestBuilder } from './identities/';
6
7
  import { type IncidentsRequestBuilder } from './incidents/';
7
8
  import { type LabelsRequestBuilder } from './labels/';
8
9
  import { type MicrosoftGraphSecurityRunHuntingQueryRequestBuilder } from './microsoftGraphSecurityRunHuntingQuery/';
@@ -33,6 +34,10 @@ export interface SecurityRequestBuilder extends BaseRequestBuilder<SecurityReque
33
34
  * Provides operations to manage the cases property of the microsoft.graph.security entity.
34
35
  */
35
36
  get cases(): CasesRequestBuilder;
37
+ /**
38
+ * Provides operations to manage the identities property of the microsoft.graph.security entity.
39
+ */
40
+ get identities(): IdentitiesRequestBuilder;
36
41
  /**
37
42
  * Provides operations to manage the incidents property of the microsoft.graph.security entity.
38
43
  */
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"}
package/security/index.js CHANGED
@@ -17,6 +17,8 @@ const attackSimulation_1 = require("./attackSimulation/");
17
17
  // @ts-ignore
18
18
  const cases_1 = require("./cases/");
19
19
  // @ts-ignore
20
+ const identities_1 = require("./identities/");
21
+ // @ts-ignore
20
22
  const incidents_1 = require("./incidents/");
21
23
  // @ts-ignore
22
24
  const labels_1 = require("./labels/");
@@ -65,6 +67,10 @@ exports.SecurityRequestBuilderNavigationMetadata = {
65
67
  requestsMetadata: cases_1.CasesRequestBuilderRequestsMetadata,
66
68
  navigationMetadata: cases_1.CasesRequestBuilderNavigationMetadata,
67
69
  },
70
+ identities: {
71
+ requestsMetadata: identities_1.IdentitiesRequestBuilderRequestsMetadata,
72
+ navigationMetadata: identities_1.IdentitiesRequestBuilderNavigationMetadata,
73
+ },
68
74
  incidents: {
69
75
  requestsMetadata: incidents_1.IncidentsRequestBuilderRequestsMetadata,
70
76
  navigationMetadata: incidents_1.IncidentsRequestBuilderNavigationMetadata,