@microsoft/msgraph-sdk-deviceappmanagement 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/deviceAppManagement/index.d.ts +6 -1
- package/deviceAppManagement/index.d.ts.map +1 -1
- package/deviceAppManagement/index.js +6 -0
- package/deviceAppManagement/index.js.map +1 -1
- package/deviceAppManagement/managedAppPolicies/index.d.ts +4 -4
- package/deviceAppManagement/managedAppPolicies/item/index.d.ts +4 -4
- package/deviceAppManagement/managedAppPolicies/item/targetApps/index.d.ts +1 -1
- package/deviceAppManagement/managedAppRegistrations/index.d.ts +4 -4
- package/deviceAppManagement/managedAppRegistrations/item/appliedPolicies/item/targetApps/index.d.ts +1 -1
- package/deviceAppManagement/managedAppRegistrations/item/index.d.ts +4 -4
- package/deviceAppManagement/managedAppRegistrations/item/intendedPolicies/item/targetApps/index.d.ts +1 -1
- package/deviceAppManagement/managedAppStatuses/index.d.ts +4 -4
- package/deviceAppManagement/managedAppStatuses/item/index.d.ts +4 -4
- package/deviceAppManagement/managedEBooks/index.d.ts +4 -4
- package/deviceAppManagement/managedEBooks/item/assignments/index.d.ts +4 -4
- package/deviceAppManagement/managedEBooks/item/assignments/item/index.d.ts +7 -7
- package/deviceAppManagement/mobileAppConfigurations/index.d.ts +4 -4
- package/deviceAppManagement/mobileAppConfigurations/item/index.d.ts +4 -4
- package/deviceAppManagement/mobileAppRelationships/count/index.d.ts +41 -0
- package/deviceAppManagement/mobileAppRelationships/count/index.d.ts.map +1 -0
- package/deviceAppManagement/mobileAppRelationships/count/index.js +34 -0
- package/deviceAppManagement/mobileAppRelationships/count/index.js.map +1 -0
- package/deviceAppManagement/mobileAppRelationships/index.d.ts +97 -0
- package/deviceAppManagement/mobileAppRelationships/index.d.ts.map +1 -0
- package/deviceAppManagement/mobileAppRelationships/index.js +70 -0
- package/deviceAppManagement/mobileAppRelationships/index.js.map +1 -0
- package/deviceAppManagement/mobileAppRelationships/item/index.d.ts +69 -0
- package/deviceAppManagement/mobileAppRelationships/item/index.d.ts.map +1 -0
- package/deviceAppManagement/mobileAppRelationships/item/index.js +56 -0
- package/deviceAppManagement/mobileAppRelationships/item/index.js.map +1 -0
- package/deviceAppManagement/mobileApps/index.d.ts +7 -7
- package/deviceAppManagement/mobileApps/item/index.d.ts +7 -7
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { type MobileAppRelationship, type MobileAppRelationshipCollectionResponse } from '@microsoft/msgraph-sdk/models/index.js';
|
|
2
|
+
import { type CountRequestBuilder } from './count/index.js';
|
|
3
|
+
import { type MobileAppRelationshipItemRequestBuilder } from './item/index.js';
|
|
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 mobileAppRelationships property of the microsoft.graph.deviceAppManagement entity.
|
|
7
|
+
*/
|
|
8
|
+
export interface MobileAppRelationshipsRequestBuilder extends BaseRequestBuilder<MobileAppRelationshipsRequestBuilder> {
|
|
9
|
+
/**
|
|
10
|
+
* Provides operations to count the resources in the collection.
|
|
11
|
+
*/
|
|
12
|
+
get count(): CountRequestBuilder;
|
|
13
|
+
/**
|
|
14
|
+
* Provides operations to manage the mobileAppRelationships property of the microsoft.graph.deviceAppManagement entity.
|
|
15
|
+
* @param mobileAppRelationshipId The unique identifier of mobileAppRelationship
|
|
16
|
+
* @returns {MobileAppRelationshipItemRequestBuilder}
|
|
17
|
+
*/
|
|
18
|
+
byMobileAppRelationshipId(mobileAppRelationshipId: string): MobileAppRelationshipItemRequestBuilder;
|
|
19
|
+
/**
|
|
20
|
+
* The mobile app relationship represents the dependency or supersedence relationship between two Intune mobile LOB applications.
|
|
21
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
|
+
* @returns {Promise<MobileAppRelationshipCollectionResponse>}
|
|
23
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
*/
|
|
25
|
+
get(requestConfiguration?: RequestConfiguration<MobileAppRelationshipsRequestBuilderGetQueryParameters> | undefined): Promise<MobileAppRelationshipCollectionResponse | undefined>;
|
|
26
|
+
/**
|
|
27
|
+
* Create new navigation property to mobileAppRelationships for deviceAppManagement
|
|
28
|
+
* @param body The request body
|
|
29
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
|
+
* @returns {Promise<MobileAppRelationship>}
|
|
31
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
32
|
+
*/
|
|
33
|
+
post(body: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MobileAppRelationship | undefined>;
|
|
34
|
+
/**
|
|
35
|
+
* The mobile app relationship represents the dependency or supersedence relationship between two Intune mobile LOB applications.
|
|
36
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
|
+
* @returns {RequestInformation}
|
|
38
|
+
*/
|
|
39
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MobileAppRelationshipsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
40
|
+
/**
|
|
41
|
+
* Create new navigation property to mobileAppRelationships for deviceAppManagement
|
|
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: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* The mobile app relationship represents the dependency or supersedence relationship between two Intune mobile LOB applications.
|
|
50
|
+
*/
|
|
51
|
+
export interface MobileAppRelationshipsRequestBuilderGetQueryParameters {
|
|
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 MobileAppRelationshipsRequestBuilderUriTemplate = "{+baseurl}/deviceAppManagement/mobileAppRelationships{?%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 MobileAppRelationshipsRequestBuilderNavigationMetadata: Record<Exclude<keyof MobileAppRelationshipsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
|
|
93
|
+
/**
|
|
94
|
+
* Metadata for all the requests in the request builder.
|
|
95
|
+
*/
|
|
96
|
+
export declare const MobileAppRelationshipsRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
97
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA0J,KAAK,qBAAqB,EAAE,KAAK,uCAAuC,EAAE,MAAM,wCAAwC,CAAC;AAI1R,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAEjG,OAAO,EAA2D,KAAK,uCAAuC,EAAE,MAAM,iBAAiB,CAAC;AAExI,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,oCAAqC,SAAQ,kBAAkB,CAAC,oCAAoC,CAAC;IAClH;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,yBAAyB,CAAC,uBAAuB,EAAE,MAAM,GAAI,uCAAuC,CAAC;IACtG;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,uCAAuC,GAAG,SAAS,CAAC,CAAC;IACrL;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACjJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/J;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChJ;AACD;;GAEG;AACH,MAAM,WAAW,sDAAsD;IACnE;;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,+CAA+C,uIAAuI,CAAC;AAcpM;;GAEG;AACH,eAAO,MAAM,sDAAsD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,oCAAoC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQtL,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,oDAAoD,EAAE,gBAuBlE,CAAC"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// Generated by Microsoft Kiota
|
|
4
|
+
// @ts-ignore
|
|
5
|
+
import { createMobileAppRelationshipCollectionResponseFromDiscriminatorValue, createMobileAppRelationshipFromDiscriminatorValue, serializeMobileAppRelationship } from '@microsoft/msgraph-sdk/models/index.js';
|
|
6
|
+
// @ts-ignore
|
|
7
|
+
import { createODataErrorFromDiscriminatorValue } from '@microsoft/msgraph-sdk/models/oDataErrors/index.js';
|
|
8
|
+
// @ts-ignore
|
|
9
|
+
import { CountRequestBuilderRequestsMetadata } from './count/index.js';
|
|
10
|
+
// @ts-ignore
|
|
11
|
+
import { MobileAppRelationshipItemRequestBuilderRequestsMetadata } from './item/index.js';
|
|
12
|
+
/**
|
|
13
|
+
* Uri template for the request builder.
|
|
14
|
+
*/
|
|
15
|
+
export const MobileAppRelationshipsRequestBuilderUriTemplate = "{+baseurl}/deviceAppManagement/mobileAppRelationships{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
|
|
16
|
+
/**
|
|
17
|
+
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
18
|
+
*/
|
|
19
|
+
const MobileAppRelationshipsRequestBuilderGetQueryParametersMapper = {
|
|
20
|
+
"count": "%24count",
|
|
21
|
+
"expand": "%24expand",
|
|
22
|
+
"filter": "%24filter",
|
|
23
|
+
"orderby": "%24orderby",
|
|
24
|
+
"search": "%24search",
|
|
25
|
+
"select": "%24select",
|
|
26
|
+
"skip": "%24skip",
|
|
27
|
+
"top": "%24top",
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Metadata for all the navigation properties in the request builder.
|
|
31
|
+
*/
|
|
32
|
+
export const MobileAppRelationshipsRequestBuilderNavigationMetadata = {
|
|
33
|
+
byMobileAppRelationshipId: {
|
|
34
|
+
requestsMetadata: MobileAppRelationshipItemRequestBuilderRequestsMetadata,
|
|
35
|
+
pathParametersMappings: ["mobileAppRelationship%2Did"],
|
|
36
|
+
},
|
|
37
|
+
count: {
|
|
38
|
+
requestsMetadata: CountRequestBuilderRequestsMetadata,
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Metadata for all the requests in the request builder.
|
|
43
|
+
*/
|
|
44
|
+
export const MobileAppRelationshipsRequestBuilderRequestsMetadata = {
|
|
45
|
+
get: {
|
|
46
|
+
uriTemplate: MobileAppRelationshipsRequestBuilderUriTemplate,
|
|
47
|
+
responseBodyContentType: "application/json",
|
|
48
|
+
errorMappings: {
|
|
49
|
+
XXX: createODataErrorFromDiscriminatorValue,
|
|
50
|
+
},
|
|
51
|
+
adapterMethodName: "send",
|
|
52
|
+
responseBodyFactory: createMobileAppRelationshipCollectionResponseFromDiscriminatorValue,
|
|
53
|
+
queryParametersMapper: MobileAppRelationshipsRequestBuilderGetQueryParametersMapper,
|
|
54
|
+
},
|
|
55
|
+
post: {
|
|
56
|
+
uriTemplate: MobileAppRelationshipsRequestBuilderUriTemplate,
|
|
57
|
+
responseBodyContentType: "application/json",
|
|
58
|
+
errorMappings: {
|
|
59
|
+
XXX: createODataErrorFromDiscriminatorValue,
|
|
60
|
+
},
|
|
61
|
+
adapterMethodName: "send",
|
|
62
|
+
responseBodyFactory: createMobileAppRelationshipFromDiscriminatorValue,
|
|
63
|
+
requestBodyContentType: "application/json",
|
|
64
|
+
requestBodySerializer: serializeMobileAppRelationship,
|
|
65
|
+
requestInformationContentSetMethod: "setContentFromParsable",
|
|
66
|
+
},
|
|
67
|
+
};
|
|
68
|
+
/* tslint:enable */
|
|
69
|
+
/* eslint-enable */
|
|
70
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,mEAAmE,EAAE,iDAAiD,EAAE,8BAA8B,EAA4E,MAAM,wCAAwC,CAAC;AAC1R,aAAa;AACb,OAAO,EAAE,sCAAsC,EAAmB,MAAM,oDAAoD,CAAC;AAC7H,aAAa;AACb,OAAO,EAAE,mCAAmC,EAA4B,MAAM,kBAAkB,CAAC;AACjG,aAAa;AACb,OAAO,EAAE,uDAAuD,EAAgD,MAAM,iBAAiB,CAAC;AAoFxI;;GAEG;AACH,MAAM,CAAC,MAAM,+CAA+C,GAAG,oIAAoI,CAAC;AACpM;;GAEG;AACH,MAAM,4DAA4D,GAA2B;IACzF,OAAO,EAAE,UAAU;IACnB,QAAQ,EAAE,WAAW;IACrB,QAAQ,EAAE,WAAW;IACrB,SAAS,EAAE,YAAY;IACvB,QAAQ,EAAE,WAAW;IACrB,QAAQ,EAAE,WAAW;IACrB,MAAM,EAAE,SAAS;IACjB,KAAK,EAAE,QAAQ;CAClB,CAAC;AACF;;GAEG;AACH,MAAM,CAAC,MAAM,sDAAsD,GAAwH;IACvL,yBAAyB,EAAE;QACvB,gBAAgB,EAAE,uDAAuD;QACzE,sBAAsB,EAAE,CAAC,4BAA4B,CAAC;KACzD;IACD,KAAK,EAAE;QACH,gBAAgB,EAAE,mCAAmC;KACxD;CACJ,CAAC;AACF;;GAEG;AACH,MAAM,CAAC,MAAM,oDAAoD,GAAqB;IAClF,GAAG,EAAE;QACD,WAAW,EAAE,+CAA+C;QAC5D,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,sCAAmE;SAC3E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,mEAAmE;QACzF,qBAAqB,EAAE,4DAA4D;KACtF;IACD,IAAI,EAAE;QACF,WAAW,EAAE,+CAA+C;QAC5D,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,sCAAmE;SAC3E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,iDAAiD;QACvE,sBAAsB,EAAE,kBAAkB;QAC1C,qBAAqB,EAAE,8BAA8B;QACrD,kCAAkC,EAAE,wBAAwB;KAC/D;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { type MobileAppRelationship } from '@microsoft/msgraph-sdk/models/index.js';
|
|
2
|
+
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
3
|
+
/**
|
|
4
|
+
* Provides operations to manage the mobileAppRelationships property of the microsoft.graph.deviceAppManagement entity.
|
|
5
|
+
*/
|
|
6
|
+
export interface MobileAppRelationshipItemRequestBuilder extends BaseRequestBuilder<MobileAppRelationshipItemRequestBuilder> {
|
|
7
|
+
/**
|
|
8
|
+
* Delete navigation property mobileAppRelationships for deviceAppManagement
|
|
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
|
+
* The mobile app relationship represents the dependency or supersedence relationship between two Intune mobile LOB applications.
|
|
15
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
|
+
* @returns {Promise<MobileAppRelationship>}
|
|
17
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
+
*/
|
|
19
|
+
get(requestConfiguration?: RequestConfiguration<MobileAppRelationshipItemRequestBuilderGetQueryParameters> | undefined): Promise<MobileAppRelationship | undefined>;
|
|
20
|
+
/**
|
|
21
|
+
* Update the navigation property mobileAppRelationships in deviceAppManagement
|
|
22
|
+
* @param body The request body
|
|
23
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
24
|
+
* @returns {Promise<MobileAppRelationship>}
|
|
25
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
26
|
+
*/
|
|
27
|
+
patch(body: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MobileAppRelationship | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* Delete navigation property mobileAppRelationships for deviceAppManagement
|
|
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
|
+
* The mobile app relationship represents the dependency or supersedence relationship between two Intune mobile LOB applications.
|
|
36
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
|
+
* @returns {RequestInformation}
|
|
38
|
+
*/
|
|
39
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MobileAppRelationshipItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
40
|
+
/**
|
|
41
|
+
* Update the navigation property mobileAppRelationships in deviceAppManagement
|
|
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: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* The mobile app relationship represents the dependency or supersedence relationship between two Intune mobile LOB applications.
|
|
50
|
+
*/
|
|
51
|
+
export interface MobileAppRelationshipItemRequestBuilderGetQueryParameters {
|
|
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 MobileAppRelationshipItemRequestBuilderUriTemplate = "{+baseurl}/deviceAppManagement/mobileAppRelationships/{mobileAppRelationship%2Did}{?%24expand,%24select}";
|
|
65
|
+
/**
|
|
66
|
+
* Metadata for all the requests in the request builder.
|
|
67
|
+
*/
|
|
68
|
+
export declare const MobileAppRelationshipItemRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
69
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqF,KAAK,qBAAqB,EAAE,MAAM,wCAAwC,CAAC;AAIvK,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,uCAAwC,SAAQ,kBAAkB,CAAC,uCAAuC,CAAC;IACxH;;;;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,yDAAyD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACtK;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IAClJ;;;;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,yDAAyD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;AACD;;GAEG;AACH,MAAM,WAAW,yDAAyD;IACtE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,kDAAkD,6GAA6G,CAAC;AAQ7K;;GAEG;AACH,eAAO,MAAM,uDAAuD,EAAE,gBA+BrE,CAAC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// Generated by Microsoft Kiota
|
|
4
|
+
// @ts-ignore
|
|
5
|
+
import { createMobileAppRelationshipFromDiscriminatorValue, serializeMobileAppRelationship } from '@microsoft/msgraph-sdk/models/index.js';
|
|
6
|
+
// @ts-ignore
|
|
7
|
+
import { createODataErrorFromDiscriminatorValue } from '@microsoft/msgraph-sdk/models/oDataErrors/index.js';
|
|
8
|
+
/**
|
|
9
|
+
* Uri template for the request builder.
|
|
10
|
+
*/
|
|
11
|
+
export const MobileAppRelationshipItemRequestBuilderUriTemplate = "{+baseurl}/deviceAppManagement/mobileAppRelationships/{mobileAppRelationship%2Did}{?%24expand,%24select}";
|
|
12
|
+
/**
|
|
13
|
+
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
14
|
+
*/
|
|
15
|
+
const MobileAppRelationshipItemRequestBuilderGetQueryParametersMapper = {
|
|
16
|
+
"expand": "%24expand",
|
|
17
|
+
"select": "%24select",
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* Metadata for all the requests in the request builder.
|
|
21
|
+
*/
|
|
22
|
+
export const MobileAppRelationshipItemRequestBuilderRequestsMetadata = {
|
|
23
|
+
delete: {
|
|
24
|
+
uriTemplate: MobileAppRelationshipItemRequestBuilderUriTemplate,
|
|
25
|
+
responseBodyContentType: "application/json",
|
|
26
|
+
errorMappings: {
|
|
27
|
+
XXX: createODataErrorFromDiscriminatorValue,
|
|
28
|
+
},
|
|
29
|
+
adapterMethodName: "sendNoResponseContent",
|
|
30
|
+
},
|
|
31
|
+
get: {
|
|
32
|
+
uriTemplate: MobileAppRelationshipItemRequestBuilderUriTemplate,
|
|
33
|
+
responseBodyContentType: "application/json",
|
|
34
|
+
errorMappings: {
|
|
35
|
+
XXX: createODataErrorFromDiscriminatorValue,
|
|
36
|
+
},
|
|
37
|
+
adapterMethodName: "send",
|
|
38
|
+
responseBodyFactory: createMobileAppRelationshipFromDiscriminatorValue,
|
|
39
|
+
queryParametersMapper: MobileAppRelationshipItemRequestBuilderGetQueryParametersMapper,
|
|
40
|
+
},
|
|
41
|
+
patch: {
|
|
42
|
+
uriTemplate: MobileAppRelationshipItemRequestBuilderUriTemplate,
|
|
43
|
+
responseBodyContentType: "application/json",
|
|
44
|
+
errorMappings: {
|
|
45
|
+
XXX: createODataErrorFromDiscriminatorValue,
|
|
46
|
+
},
|
|
47
|
+
adapterMethodName: "send",
|
|
48
|
+
responseBodyFactory: createMobileAppRelationshipFromDiscriminatorValue,
|
|
49
|
+
requestBodyContentType: "application/json",
|
|
50
|
+
requestBodySerializer: serializeMobileAppRelationship,
|
|
51
|
+
requestInformationContentSetMethod: "setContentFromParsable",
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
/* tslint:enable */
|
|
55
|
+
/* eslint-enable */
|
|
56
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,iDAAiD,EAAE,8BAA8B,EAA8B,MAAM,wCAAwC,CAAC;AACvK,aAAa;AACb,OAAO,EAAE,sCAAsC,EAAmB,MAAM,oDAAoD,CAAC;AA8D7H;;GAEG;AACH,MAAM,CAAC,MAAM,kDAAkD,GAAG,0GAA0G,CAAC;AAC7K;;GAEG;AACH,MAAM,+DAA+D,GAA2B;IAC5F,QAAQ,EAAE,WAAW;IACrB,QAAQ,EAAE,WAAW;CACxB,CAAC;AACF;;GAEG;AACH,MAAM,CAAC,MAAM,uDAAuD,GAAqB;IACrF,MAAM,EAAE;QACJ,WAAW,EAAE,kDAAkD;QAC/D,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,sCAAmE;SAC3E;QACD,iBAAiB,EAAE,uBAAuB;KAC7C;IACD,GAAG,EAAE;QACD,WAAW,EAAE,kDAAkD;QAC/D,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,sCAAmE;SAC3E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,iDAAiD;QACvE,qBAAqB,EAAE,+DAA+D;KACzF;IACD,KAAK,EAAE;QACH,WAAW,EAAE,kDAAkD;QAC/D,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,sCAAmE;SAC3E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,iDAAiD;QACvE,sBAAsB,EAAE,kBAAkB;QAC1C,qBAAqB,EAAE,8BAA8B;QACrD,kCAAkC,EAAE,wBAAwB;KAC/D;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|
|
@@ -97,30 +97,30 @@ export interface MobileAppsRequestBuilder extends BaseRequestBuilder<MobileAppsR
|
|
|
97
97
|
*/
|
|
98
98
|
byMobileAppId(mobileAppId: string): MobileAppItemRequestBuilder;
|
|
99
99
|
/**
|
|
100
|
-
* List properties and relationships of the
|
|
100
|
+
* List properties and relationships of the managedApp objects.
|
|
101
101
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
102
102
|
* @returns {Promise<MobileAppCollectionResponse>}
|
|
103
103
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
104
|
-
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-
|
|
104
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-managedapp-list?view=graph-rest-1.0|Find more info here}
|
|
105
105
|
*/
|
|
106
106
|
get(requestConfiguration?: RequestConfiguration<MobileAppsRequestBuilderGetQueryParameters> | undefined): Promise<MobileAppCollectionResponse | undefined>;
|
|
107
107
|
/**
|
|
108
|
-
* Create a new
|
|
108
|
+
* Create a new win32LobApp object.
|
|
109
109
|
* @param body The request body
|
|
110
110
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
111
111
|
* @returns {Promise<MobileApp>}
|
|
112
112
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
113
|
-
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-
|
|
113
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-win32lobapp-create?view=graph-rest-1.0|Find more info here}
|
|
114
114
|
*/
|
|
115
115
|
post(body: MobileApp, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MobileApp | undefined>;
|
|
116
116
|
/**
|
|
117
|
-
* List properties and relationships of the
|
|
117
|
+
* List properties and relationships of the managedApp objects.
|
|
118
118
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
119
119
|
* @returns {RequestInformation}
|
|
120
120
|
*/
|
|
121
121
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MobileAppsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
122
122
|
/**
|
|
123
|
-
* Create a new
|
|
123
|
+
* Create a new win32LobApp object.
|
|
124
124
|
* @param body The request body
|
|
125
125
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
126
126
|
* @returns {RequestInformation}
|
|
@@ -128,7 +128,7 @@ export interface MobileAppsRequestBuilder extends BaseRequestBuilder<MobileAppsR
|
|
|
128
128
|
toPostRequestInformation(body: MobileApp, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
129
129
|
}
|
|
130
130
|
/**
|
|
131
|
-
* List properties and relationships of the
|
|
131
|
+
* List properties and relationships of the managedApp objects.
|
|
132
132
|
*/
|
|
133
133
|
export interface MobileAppsRequestBuilderGetQueryParameters {
|
|
134
134
|
/**
|
|
@@ -100,18 +100,18 @@ export interface MobileAppItemRequestBuilder extends BaseRequestBuilder<MobileAp
|
|
|
100
100
|
*/
|
|
101
101
|
get graphWindowsWebApp(): GraphWindowsWebAppRequestBuilder;
|
|
102
102
|
/**
|
|
103
|
-
* Deletes a
|
|
103
|
+
* Deletes a iosiPadOSWebClip.
|
|
104
104
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
105
105
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
106
|
-
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-
|
|
106
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-iosipadoswebclip-delete?view=graph-rest-1.0|Find more info here}
|
|
107
107
|
*/
|
|
108
108
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
109
109
|
/**
|
|
110
|
-
* Read properties and relationships of the
|
|
110
|
+
* Read properties and relationships of the macOSOfficeSuiteApp object.
|
|
111
111
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
112
112
|
* @returns {Promise<MobileApp>}
|
|
113
113
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
114
|
-
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-
|
|
114
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-macosofficesuiteapp-get?view=graph-rest-1.0|Find more info here}
|
|
115
115
|
*/
|
|
116
116
|
get(requestConfiguration?: RequestConfiguration<MobileAppItemRequestBuilderGetQueryParameters> | undefined): Promise<MobileApp | undefined>;
|
|
117
117
|
/**
|
|
@@ -124,13 +124,13 @@ export interface MobileAppItemRequestBuilder extends BaseRequestBuilder<MobileAp
|
|
|
124
124
|
*/
|
|
125
125
|
patch(body: MobileApp, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MobileApp | undefined>;
|
|
126
126
|
/**
|
|
127
|
-
* Deletes a
|
|
127
|
+
* Deletes a iosiPadOSWebClip.
|
|
128
128
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
129
129
|
* @returns {RequestInformation}
|
|
130
130
|
*/
|
|
131
131
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
132
132
|
/**
|
|
133
|
-
* Read properties and relationships of the
|
|
133
|
+
* Read properties and relationships of the macOSOfficeSuiteApp object.
|
|
134
134
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
135
135
|
* @returns {RequestInformation}
|
|
136
136
|
*/
|
|
@@ -144,7 +144,7 @@ export interface MobileAppItemRequestBuilder extends BaseRequestBuilder<MobileAp
|
|
|
144
144
|
toPatchRequestInformation(body: MobileApp, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
145
145
|
}
|
|
146
146
|
/**
|
|
147
|
-
* Read properties and relationships of the
|
|
147
|
+
* Read properties and relationships of the macOSOfficeSuiteApp object.
|
|
148
148
|
*/
|
|
149
149
|
export interface MobileAppItemRequestBuilderGetQueryParameters {
|
|
150
150
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/msgraph-sdk-deviceappmanagement",
|
|
3
|
-
"version": "1.0.0-preview.
|
|
3
|
+
"version": "1.0.0-preview.68",
|
|
4
4
|
"description": "DeviceAppManagement fluent API for Microsoft Graph",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Microsoft",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"typescript": "^5.3.3"
|
|
38
38
|
},
|
|
39
39
|
"type": "module",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "f3f9131f62845ef74363b23df3a2f39bfbea097e"
|
|
41
41
|
}
|