@microsoft/msgraph-sdk-deviceappmanagement 1.0.0-preview.55 → 1.0.0-preview.58

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/README.md CHANGED
@@ -1,11 +1,193 @@
1
1
  # `@microsoft/msgraph-sdk-deviceAppManagement`
2
2
 
3
- > TODO: description
3
+ Get started with the Microsoft Graph SDK for TypeScript by integrating the [Microsoft Graph API](https://learn.microsoft.com/graph/overview) into your TypeScript application!
4
4
 
5
- ## Usage
5
+ This package provides a fluent API for interacting with Microsoft Graph administrative functions.
6
6
 
7
+ > [!NOTE]
8
+ > This package allows you to build applications using the [v1.0](https://learn.microsoft.com/graph/use-the-api#version) of Microsoft Graph. If you want to try the latest Microsoft Graph APIs, use our [beta SDK](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript) instead.
9
+
10
+ ## 1. Installation
11
+
12
+ To install the package, use npm:
13
+
14
+ ```shell
15
+ # this will install the authentication provider for Azure Identity / Microsoft Entra
16
+ npm install @microsoft/kiota-authentication-azure @azure/identity
17
+ # this will install the fluent API package for the administrative API paths
18
+ npm install @microsoft/msgraph-sdk-deviceAppManagement
19
+ ```
20
+
21
+ ## 2. Getting started
22
+
23
+ > Note: we are working to add the getting started information for Typescript to our public documentation, in the meantime the following sample should help you getting started.
24
+
25
+ ### 2.1 Register your application
26
+
27
+ Register your application by following the steps at [Register your app with the Microsoft Identity Platform](https://learn.microsoft.com/graph/auth-register-app-v2).
28
+
29
+ ### 2.2 Create an AuthenticationProvider object
30
+
31
+ An instance of the **GraphServiceClient** class handles building client. To create a new instance of this class, you need to provide an instance of **AuthenticationProvider**, which can authenticate requests to Microsoft Graph.
32
+
33
+ <!-- TODO restore that and remove the snippets below once the SDK hits GA and the public documentation has been updated -->
34
+ <!-- For an example of how to get an authentication provider, see [choose a Microsoft Graph authentication provider](https://learn.microsoft.com/graph/sdks/choose-authentication-providers?tabs=typescript). -->
35
+
36
+ #### 2.2.1 Authorization Code Provider
37
+
38
+ ```TypeScript
39
+ // @azure/identity
40
+ const credential = new AuthorizationCodeCredential(
41
+ 'YOUR_TENANT_ID',
42
+ 'YOUR_CLIENT_ID',
43
+ 'YOUR_CLIENT_SECRET',
44
+ 'AUTHORIZATION_CODE',
45
+ 'REDIRECT_URL',
46
+ );
47
+
48
+ // @microsoft/kiota-authentication-azure
49
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["User.Read"]);
50
+ ```
51
+
52
+ #### 2.2.2 Client Credentials Provider
53
+
54
+ ##### With a certificate
55
+
56
+ ```TypeScript
57
+ // @azure/identity
58
+ const credential = new ClientCertificateCredential(
59
+ 'YOUR_TENANT_ID',
60
+ 'YOUR_CLIENT_ID',
61
+ 'YOUR_CERTIFICATE_PATH',
62
+ );
63
+
64
+ // @microsoft/kiota-authentication-azure
65
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["https://graph.microsoft.com/.default"]);
66
+ ```
67
+
68
+ ##### With a secret
69
+
70
+ ```TypeScript
71
+ // @azure/identity
72
+ const credential = new ClientSecretCredential(
73
+ 'YOUR_TENANT_ID',
74
+ 'YOUR_CLIENT_ID',
75
+ 'YOUR_CLIENT_SECRET',
76
+ );
77
+
78
+ // @microsoft/kiota-authentication-azure
79
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["https://graph.microsoft.com/.default"]);
80
+ ```
81
+
82
+ #### 2.2.3 On-behalf-of provider
83
+
84
+ ```TypeScript
85
+ // @azure/identity
86
+ const credential = new OnBehalfOfCredential({
87
+ tenantId: 'YOUR_TENANT_ID',
88
+ clientId: 'YOUR_CLIENT_ID',
89
+ clientSecret: 'YOUR_CLIENT_SECRET',
90
+ userAssertionToken: 'JWT_TOKEN_TO_EXCHANGE',
91
+ });
92
+
93
+ // @microsoft/kiota-authentication-azure
94
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["https://graph.microsoft.com/.default"]);
95
+ ```
96
+
97
+ #### 2.2.4 Device code provider
98
+
99
+ ```TypeScript
100
+ // @azure/identity
101
+ const credential = new DeviceCodeCredential({
102
+ tenantId: 'YOUR_TENANT_ID',
103
+ clientId: 'YOUR_CLIENT_ID',
104
+ userPromptCallback: (info) => {
105
+ console.log(info.message);
106
+ },
107
+ });
108
+
109
+ // @microsoft/kiota-authentication-azure
110
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["User.Read"]);
111
+ ```
112
+
113
+ #### 2.2.5 Interactive provider
114
+
115
+ ```TypeScript
116
+ // @azure/identity
117
+ const credential = new InteractiveBrowserCredential({
118
+ tenantId: 'YOUR_TENANT_ID',
119
+ clientId: 'YOUR_CLIENT_ID',
120
+ redirectUri: 'http://localhost',
121
+ });
122
+
123
+ // @microsoft/kiota-authentication-azure
124
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["User.Read"]);
7
125
  ```
8
- const msgraphSdkJavascriptDeviceAppManagement = require('@microsoft/msgraph-sdk-deviceAppManagement');
9
126
 
10
- // TODO: DEMONSTRATE API
127
+ #### 2.2.6 Username/password provider
128
+
129
+ ```TypeScript
130
+ // @azure/identity
131
+ const credential = new UsernamePasswordCredential(
132
+ 'YOUR_TENANT_ID',
133
+ 'YOUR_CLIENT_ID',
134
+ 'YOUR_USER_NAME',
135
+ 'YOUR_PASSWORD',
136
+ );
137
+
138
+ // @microsoft/kiota-authentication-azure
139
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["User.Read"]);
140
+ ```
141
+
142
+ ### 2.3 Get a Graph Service Client Adapter object
143
+
144
+ You must get a **GraphServiceClient** object to make requests against the service.
145
+
146
+ ```typescript
147
+ const requestAdapter = new GraphRequestAdapter(authProvider);
148
+ const graphServiceClient = createGraphServiceClient(requestAdapter);
149
+ ```
150
+
151
+ ## 3. Make requests against the service
152
+
153
+ After you have a **GraphServiceClient** that is authenticated, you can begin making calls against the service. The requests against the service look like our [REST API](https://learn.microsoft.com/graph/api/overview?view=graph-rest-1.0).
154
+
155
+ ### 3.1 Get user's detailed information
156
+
157
+ To retrieve the user's detailed information:
158
+
159
+ ```typescript
160
+ import { createGraphServiceClient, GraphRequestAdapter } from "@microsoft/msgraph-sdk";
161
+ import "@microsoft/msgraph-sdk-deviceAppManagement"
162
+
163
+ const requestAdapter = new GraphRequestAdapter(authProvider);
164
+ const graphServiceClient = createGraphServiceClient(requestAdapter);
165
+
166
+ const deviceAppManagement = graphServiceClient.deviceAppManagement.get();
11
167
  ```
168
+
169
+ ## 4. Documentation
170
+
171
+ For more detailed documentation, see:
172
+
173
+ * [Overview](https://learn.microsoft.com/graph/overview)
174
+ * [Collections](https://learn.microsoft.com/graph/sdks/paging)
175
+ * [Making requests](https://learn.microsoft.com/graph/sdks/create-requests)
176
+ * [Known issues](https://github.com/MicrosoftGraph/msgraph-sdk-typescript/issues)
177
+ * [Contributions](https://github.com/microsoftgraph/msgraph-sdk-typescript/blob/main/CONTRIBUTING.md)
178
+
179
+ ## 5. Issues
180
+
181
+ For known issues, see [issues](https://github.com/MicrosoftGraph/msgraph-sdk-typescript/issues).
182
+
183
+ ## 6. Contributions
184
+
185
+ The Microsoft Graph SDK is open for contribution. To contribute to this project, see [Contributing](https://github.com/microsoftgraph/msgraph-sdk-typescript/blob/main/CONTRIBUTING.md).
186
+
187
+ ## 7. License
188
+
189
+ Licensed under the [MIT license](https://github.com/microsoftgraph/msgraph-sdk-typescript/blob/main/LICENSE).
190
+
191
+ ## 8. Third-party notices
192
+
193
+ [Third-party notices](https://github.com/microsoftgraph/msgraph-sdk-typescript/blob/main/LICENSE)
@@ -93,7 +93,7 @@ export interface DeviceAppManagementRequestBuilder extends BaseRequestBuilder<De
93
93
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
94
94
  * @returns {Promise<DeviceAppManagement>}
95
95
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
96
- * @see {@link https://learn.microsoft.com/graph/api/intune-policyset-deviceappmanagement-update?view=graph-rest-1.0|Find more info here}
96
+ * @see {@link https://learn.microsoft.com/graph/api/intune-unlock-deviceappmanagement-update?view=graph-rest-1.0|Find more info here}
97
97
  */
98
98
  patch(body: DeviceAppManagement, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<DeviceAppManagement | undefined>;
99
99
  /**
@@ -17,11 +17,11 @@ export interface ManagedAppPoliciesRequestBuilder extends BaseRequestBuilder<Man
17
17
  */
18
18
  byManagedAppPolicyId(managedAppPolicyId: string): ManagedAppPolicyItemRequestBuilder;
19
19
  /**
20
- * List properties and relationships of the managedAppPolicy objects.
20
+ * List properties and relationships of the targetedManagedAppProtection objects.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {Promise<ManagedAppPolicyCollectionResponse>}
23
23
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
24
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-list?view=graph-rest-1.0|Find more info here}
24
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-list?view=graph-rest-1.0|Find more info here}
25
25
  */
26
26
  get(requestConfiguration?: RequestConfiguration<ManagedAppPoliciesRequestBuilderGetQueryParameters> | undefined): Promise<ManagedAppPolicyCollectionResponse | undefined>;
27
27
  /**
@@ -33,7 +33,7 @@ export interface ManagedAppPoliciesRequestBuilder extends BaseRequestBuilder<Man
33
33
  */
34
34
  post(body: ManagedAppPolicy, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ManagedAppPolicy | undefined>;
35
35
  /**
36
- * List properties and relationships of the managedAppPolicy objects.
36
+ * List properties and relationships of the targetedManagedAppProtection objects.
37
37
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
38
38
  * @returns {RequestInformation}
39
39
  */
@@ -47,7 +47,7 @@ export interface ManagedAppPoliciesRequestBuilder extends BaseRequestBuilder<Man
47
47
  toPostRequestInformation(body: ManagedAppPolicy, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
48
48
  }
49
49
  /**
50
- * List properties and relationships of the managedAppPolicy objects.
50
+ * List properties and relationships of the targetedManagedAppProtection objects.
51
51
  */
52
52
  export interface ManagedAppPoliciesRequestBuilderGetQueryParameters {
53
53
  /**
@@ -39,7 +39,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder<TargetAppsR
39
39
  * @param body The request body
40
40
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
41
41
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
42
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0|Find more info here}
42
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
43
43
  */
44
44
  post(body: TargetAppsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
45
45
  /**
@@ -22,11 +22,11 @@ export interface ManagedAppRegistrationsRequestBuilder extends BaseRequestBuilde
22
22
  */
23
23
  byManagedAppRegistrationId(managedAppRegistrationId: string): ManagedAppRegistrationItemRequestBuilder;
24
24
  /**
25
- * List properties and relationships of the androidManagedAppRegistration objects.
25
+ * List properties and relationships of the managedAppRegistration objects.
26
26
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
27
27
  * @returns {Promise<ManagedAppRegistrationCollectionResponse>}
28
28
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
29
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-androidmanagedappregistration-list?view=graph-rest-1.0|Find more info here}
29
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappregistration-list?view=graph-rest-1.0|Find more info here}
30
30
  */
31
31
  get(requestConfiguration?: RequestConfiguration<ManagedAppRegistrationsRequestBuilderGetQueryParameters> | undefined): Promise<ManagedAppRegistrationCollectionResponse | undefined>;
32
32
  /**
@@ -39,7 +39,7 @@ export interface ManagedAppRegistrationsRequestBuilder extends BaseRequestBuilde
39
39
  */
40
40
  post(body: ManagedAppRegistration, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ManagedAppRegistration | undefined>;
41
41
  /**
42
- * List properties and relationships of the androidManagedAppRegistration objects.
42
+ * List properties and relationships of the managedAppRegistration objects.
43
43
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
44
44
  * @returns {RequestInformation}
45
45
  */
@@ -53,7 +53,7 @@ export interface ManagedAppRegistrationsRequestBuilder extends BaseRequestBuilde
53
53
  toPostRequestInformation(body: ManagedAppRegistration, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
54
54
  }
55
55
  /**
56
- * List properties and relationships of the androidManagedAppRegistration objects.
56
+ * List properties and relationships of the managedAppRegistration objects.
57
57
  */
58
58
  export interface ManagedAppRegistrationsRequestBuilderGetQueryParameters {
59
59
  /**
@@ -39,7 +39,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder<TargetAppsR
39
39
  * @param body The request body
40
40
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
41
41
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
42
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0|Find more info here}
42
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
43
43
  */
44
44
  post(body: TargetAppsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
45
45
  /**
@@ -26,11 +26,11 @@ export interface ManagedAppRegistrationItemRequestBuilder extends BaseRequestBui
26
26
  */
27
27
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
28
28
  /**
29
- * Read properties and relationships of the iosManagedAppRegistration object.
29
+ * Read properties and relationships of the androidManagedAppRegistration object.
30
30
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
31
31
  * @returns {Promise<ManagedAppRegistration>}
32
32
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
33
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-iosmanagedappregistration-get?view=graph-rest-1.0|Find more info here}
33
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-androidmanagedappregistration-get?view=graph-rest-1.0|Find more info here}
34
34
  */
35
35
  get(requestConfiguration?: RequestConfiguration<ManagedAppRegistrationItemRequestBuilderGetQueryParameters> | undefined): Promise<ManagedAppRegistration | undefined>;
36
36
  /**
@@ -48,7 +48,7 @@ export interface ManagedAppRegistrationItemRequestBuilder extends BaseRequestBui
48
48
  */
49
49
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
50
50
  /**
51
- * Read properties and relationships of the iosManagedAppRegistration object.
51
+ * Read properties and relationships of the androidManagedAppRegistration object.
52
52
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
53
53
  * @returns {RequestInformation}
54
54
  */
@@ -62,7 +62,7 @@ export interface ManagedAppRegistrationItemRequestBuilder extends BaseRequestBui
62
62
  toPatchRequestInformation(body: ManagedAppRegistration, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
63
63
  }
64
64
  /**
65
- * Read properties and relationships of the iosManagedAppRegistration object.
65
+ * Read properties and relationships of the androidManagedAppRegistration object.
66
66
  */
67
67
  export interface ManagedAppRegistrationItemRequestBuilderGetQueryParameters {
68
68
  /**
@@ -39,7 +39,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder<TargetAppsR
39
39
  * @param body The request body
40
40
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
41
41
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
42
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0|Find more info here}
42
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
43
43
  */
44
44
  post(body: TargetAppsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
45
45
  /**
@@ -17,11 +17,11 @@ export interface ManagedAppStatusesRequestBuilder extends BaseRequestBuilder<Man
17
17
  */
18
18
  byManagedAppStatusId(managedAppStatusId: string): ManagedAppStatusItemRequestBuilder;
19
19
  /**
20
- * List properties and relationships of the managedAppStatusRaw objects.
20
+ * List properties and relationships of the managedAppStatus objects.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {Promise<ManagedAppStatusCollectionResponse>}
23
23
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
24
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappstatusraw-list?view=graph-rest-1.0|Find more info here}
24
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappstatus-list?view=graph-rest-1.0|Find more info here}
25
25
  */
26
26
  get(requestConfiguration?: RequestConfiguration<ManagedAppStatusesRequestBuilderGetQueryParameters> | undefined): Promise<ManagedAppStatusCollectionResponse | undefined>;
27
27
  /**
@@ -33,7 +33,7 @@ export interface ManagedAppStatusesRequestBuilder extends BaseRequestBuilder<Man
33
33
  */
34
34
  post(body: ManagedAppStatus, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ManagedAppStatus | undefined>;
35
35
  /**
36
- * List properties and relationships of the managedAppStatusRaw objects.
36
+ * List properties and relationships of the managedAppStatus objects.
37
37
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
38
38
  * @returns {RequestInformation}
39
39
  */
@@ -47,7 +47,7 @@ export interface ManagedAppStatusesRequestBuilder extends BaseRequestBuilder<Man
47
47
  toPostRequestInformation(body: ManagedAppStatus, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
48
48
  }
49
49
  /**
50
- * List properties and relationships of the managedAppStatusRaw objects.
50
+ * List properties and relationships of the managedAppStatus objects.
51
51
  */
52
52
  export interface ManagedAppStatusesRequestBuilderGetQueryParameters {
53
53
  /**
@@ -11,11 +11,11 @@ export interface ManagedAppStatusItemRequestBuilder extends BaseRequestBuilder<M
11
11
  */
12
12
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
13
13
  /**
14
- * Read properties and relationships of the managedAppStatus object.
14
+ * Read properties and relationships of the managedAppStatusRaw object.
15
15
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
16
16
  * @returns {Promise<ManagedAppStatus>}
17
17
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
18
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappstatus-get?view=graph-rest-1.0|Find more info here}
18
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappstatusraw-get?view=graph-rest-1.0|Find more info here}
19
19
  */
20
20
  get(requestConfiguration?: RequestConfiguration<ManagedAppStatusItemRequestBuilderGetQueryParameters> | undefined): Promise<ManagedAppStatus | undefined>;
21
21
  /**
@@ -33,7 +33,7 @@ export interface ManagedAppStatusItemRequestBuilder extends BaseRequestBuilder<M
33
33
  */
34
34
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
35
35
  /**
36
- * Read properties and relationships of the managedAppStatus object.
36
+ * Read properties and relationships of the managedAppStatusRaw object.
37
37
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
38
38
  * @returns {RequestInformation}
39
39
  */
@@ -47,7 +47,7 @@ export interface ManagedAppStatusItemRequestBuilder extends BaseRequestBuilder<M
47
47
  toPatchRequestInformation(body: ManagedAppStatus, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
48
48
  }
49
49
  /**
50
- * Read properties and relationships of the managedAppStatus object.
50
+ * Read properties and relationships of the managedAppStatusRaw object.
51
51
  */
52
52
  export interface ManagedAppStatusItemRequestBuilderGetQueryParameters {
53
53
  /**
@@ -17,11 +17,11 @@ export interface ManagedEBooksRequestBuilder extends BaseRequestBuilder<ManagedE
17
17
  */
18
18
  byManagedEBookId(managedEBookId: string): ManagedEBookItemRequestBuilder;
19
19
  /**
20
- * List properties and relationships of the iosVppEBook objects.
20
+ * List properties and relationships of the managedEBook objects.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {Promise<ManagedEBookCollectionResponse>}
23
23
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
24
- * @see {@link https://learn.microsoft.com/graph/api/intune-books-iosvppebook-list?view=graph-rest-1.0|Find more info here}
24
+ * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebook-list?view=graph-rest-1.0|Find more info here}
25
25
  */
26
26
  get(requestConfiguration?: RequestConfiguration<ManagedEBooksRequestBuilderGetQueryParameters> | undefined): Promise<ManagedEBookCollectionResponse | undefined>;
27
27
  /**
@@ -34,7 +34,7 @@ export interface ManagedEBooksRequestBuilder extends BaseRequestBuilder<ManagedE
34
34
  */
35
35
  post(body: ManagedEBook, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ManagedEBook | undefined>;
36
36
  /**
37
- * List properties and relationships of the iosVppEBook objects.
37
+ * List properties and relationships of the managedEBook objects.
38
38
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
39
39
  * @returns {RequestInformation}
40
40
  */
@@ -48,7 +48,7 @@ export interface ManagedEBooksRequestBuilder extends BaseRequestBuilder<ManagedE
48
48
  toPostRequestInformation(body: ManagedEBook, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
49
49
  }
50
50
  /**
51
- * List properties and relationships of the iosVppEBook objects.
51
+ * List properties and relationships of the managedEBook objects.
52
52
  */
53
53
  export interface ManagedEBooksRequestBuilderGetQueryParameters {
54
54
  /**
@@ -25,12 +25,12 @@ export interface AssignmentsRequestBuilder extends BaseRequestBuilder<Assignment
25
25
  */
26
26
  get(requestConfiguration?: RequestConfiguration<AssignmentsRequestBuilderGetQueryParameters> | undefined): Promise<ManagedEBookAssignmentCollectionResponse | undefined>;
27
27
  /**
28
- * Create a new managedEBookAssignment object.
28
+ * Create a new iosVppEBookAssignment object.
29
29
  * @param body The request body
30
30
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
31
31
  * @returns {Promise<ManagedEBookAssignment>}
32
32
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
33
- * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-create?view=graph-rest-1.0|Find more info here}
33
+ * @see {@link https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-create?view=graph-rest-1.0|Find more info here}
34
34
  */
35
35
  post(body: ManagedEBookAssignment, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ManagedEBookAssignment | undefined>;
36
36
  /**
@@ -40,7 +40,7 @@ export interface AssignmentsRequestBuilder extends BaseRequestBuilder<Assignment
40
40
  */
41
41
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<AssignmentsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
42
42
  /**
43
- * Create a new managedEBookAssignment object.
43
+ * Create a new iosVppEBookAssignment object.
44
44
  * @param body The request body
45
45
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
46
46
  * @returns {RequestInformation}
@@ -12,20 +12,20 @@ export interface ManagedEBookAssignmentItemRequestBuilder extends BaseRequestBui
12
12
  */
13
13
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
14
14
  /**
15
- * Read properties and relationships of the iosVppEBookAssignment object.
15
+ * Read properties and relationships of the managedEBookAssignment object.
16
16
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
17
17
  * @returns {Promise<ManagedEBookAssignment>}
18
18
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
19
- * @see {@link https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-get?view=graph-rest-1.0|Find more info here}
19
+ * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-get?view=graph-rest-1.0|Find more info here}
20
20
  */
21
21
  get(requestConfiguration?: RequestConfiguration<ManagedEBookAssignmentItemRequestBuilderGetQueryParameters> | undefined): Promise<ManagedEBookAssignment | undefined>;
22
22
  /**
23
- * Update the properties of a managedEBookAssignment object.
23
+ * Update the properties of a iosVppEBookAssignment object.
24
24
  * @param body The request body
25
25
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
26
26
  * @returns {Promise<ManagedEBookAssignment>}
27
27
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
28
- * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-update?view=graph-rest-1.0|Find more info here}
28
+ * @see {@link https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-update?view=graph-rest-1.0|Find more info here}
29
29
  */
30
30
  patch(body: ManagedEBookAssignment, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ManagedEBookAssignment | undefined>;
31
31
  /**
@@ -35,13 +35,13 @@ export interface ManagedEBookAssignmentItemRequestBuilder extends BaseRequestBui
35
35
  */
36
36
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
37
37
  /**
38
- * Read properties and relationships of the iosVppEBookAssignment object.
38
+ * Read properties and relationships of the managedEBookAssignment object.
39
39
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
40
40
  * @returns {RequestInformation}
41
41
  */
42
42
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<ManagedEBookAssignmentItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
43
43
  /**
44
- * Update the properties of a managedEBookAssignment object.
44
+ * Update the properties of a iosVppEBookAssignment object.
45
45
  * @param body The request body
46
46
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
47
47
  * @returns {RequestInformation}
@@ -49,7 +49,7 @@ export interface ManagedEBookAssignmentItemRequestBuilder extends BaseRequestBui
49
49
  toPatchRequestInformation(body: ManagedEBookAssignment, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
50
50
  }
51
51
  /**
52
- * Read properties and relationships of the iosVppEBookAssignment object.
52
+ * Read properties and relationships of the managedEBookAssignment object.
53
53
  */
54
54
  export interface ManagedEBookAssignmentItemRequestBuilderGetQueryParameters {
55
55
  /**
@@ -42,11 +42,11 @@ export interface ManagedDeviceMobileAppConfigurationItemRequestBuilder extends B
42
42
  */
43
43
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
44
44
  /**
45
- * Read properties and relationships of the iosMobileAppConfiguration object.
45
+ * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
46
46
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
47
47
  * @returns {Promise<ManagedDeviceMobileAppConfiguration>}
48
48
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
49
- * @see {@link https://learn.microsoft.com/graph/api/intune-apps-iosmobileappconfiguration-get?view=graph-rest-1.0|Find more info here}
49
+ * @see {@link https://learn.microsoft.com/graph/api/intune-apps-manageddevicemobileappconfiguration-get?view=graph-rest-1.0|Find more info here}
50
50
  */
51
51
  get(requestConfiguration?: RequestConfiguration<ManagedDeviceMobileAppConfigurationItemRequestBuilderGetQueryParameters> | undefined): Promise<ManagedDeviceMobileAppConfiguration | undefined>;
52
52
  /**
@@ -65,7 +65,7 @@ export interface ManagedDeviceMobileAppConfigurationItemRequestBuilder extends B
65
65
  */
66
66
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
67
67
  /**
68
- * Read properties and relationships of the iosMobileAppConfiguration object.
68
+ * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
69
69
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
70
70
  * @returns {RequestInformation}
71
71
  */
@@ -79,7 +79,7 @@ export interface ManagedDeviceMobileAppConfigurationItemRequestBuilder extends B
79
79
  toPatchRequestInformation(body: ManagedDeviceMobileAppConfiguration, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
80
80
  }
81
81
  /**
82
- * Read properties and relationships of the iosMobileAppConfiguration object.
82
+ * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
83
83
  */
84
84
  export interface ManagedDeviceMobileAppConfigurationItemRequestBuilderGetQueryParameters {
85
85
  /**
@@ -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 androidLobApp objects.
100
+ * List properties and relationships of the macOSOfficeSuiteApp 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-androidlobapp-list?view=graph-rest-1.0|Find more info here}
104
+ * @see {@link https://learn.microsoft.com/graph/api/intune-apps-macosofficesuiteapp-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 iosStoreApp object.
108
+ * Create a new windowsAppX 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-iosstoreapp-create?view=graph-rest-1.0|Find more info here}
113
+ * @see {@link https://learn.microsoft.com/graph/api/intune-apps-windowsappx-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 androidLobApp objects.
117
+ * List properties and relationships of the macOSOfficeSuiteApp 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 iosStoreApp object.
123
+ * Create a new windowsAppX 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 androidLobApp objects.
131
+ * List properties and relationships of the macOSOfficeSuiteApp objects.
132
132
  */
133
133
  export interface MobileAppsRequestBuilderGetQueryParameters {
134
134
  /**