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

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,196 @@
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 requires the `@microsoft/msgraph-sdk` package. It 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
+
11
+ ## 1. Installation
12
+
13
+ To install the package, use npm:
14
+
15
+ ```shell
16
+ # this will install the main package
17
+ npm install @microsoft/msgraph-sdk
18
+ # this will install the authentication provider for Azure Identity / Microsoft Entra
19
+ npm install @microsoft/kiota-authentication-azure @azure/identity
20
+ # this will install the fluent API package for the administrative API paths
21
+ npm install @microsoft/msgraph-sdk-deviceAppManagement
7
22
  ```
8
- const msgraphSdkJavascriptDeviceAppManagement = require('@microsoft/msgraph-sdk-deviceAppManagement');
9
23
 
10
- // TODO: DEMONSTRATE API
24
+ ## 2. Getting started
25
+
26
+ > 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.
27
+
28
+ ### 2.1 Register your application
29
+
30
+ 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).
31
+
32
+ ### 2.2 Create an AuthenticationProvider object
33
+
34
+ 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.
35
+
36
+ <!-- TODO restore that and remove the snippets below once the SDK hits GA and the public documentation has been updated -->
37
+ <!-- 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). -->
38
+
39
+ #### 2.2.1 Authorization Code Provider
40
+
41
+ ```TypeScript
42
+ // @azure/identity
43
+ const credential = new AuthorizationCodeCredential(
44
+ 'YOUR_TENANT_ID',
45
+ 'YOUR_CLIENT_ID',
46
+ 'YOUR_CLIENT_SECRET',
47
+ 'AUTHORIZATION_CODE',
48
+ 'REDIRECT_URL',
49
+ );
50
+
51
+ // @microsoft/kiota-authentication-azure
52
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["User.Read"]);
11
53
  ```
54
+
55
+ #### 2.2.2 Client Credentials Provider
56
+
57
+ ##### With a certificate
58
+
59
+ ```TypeScript
60
+ // @azure/identity
61
+ const credential = new ClientCertificateCredential(
62
+ 'YOUR_TENANT_ID',
63
+ 'YOUR_CLIENT_ID',
64
+ 'YOUR_CERTIFICATE_PATH',
65
+ );
66
+
67
+ // @microsoft/kiota-authentication-azure
68
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["https://graph.microsoft.com/.default"]);
69
+ ```
70
+
71
+ ##### With a secret
72
+
73
+ ```TypeScript
74
+ // @azure/identity
75
+ const credential = new ClientSecretCredential(
76
+ 'YOUR_TENANT_ID',
77
+ 'YOUR_CLIENT_ID',
78
+ 'YOUR_CLIENT_SECRET',
79
+ );
80
+
81
+ // @microsoft/kiota-authentication-azure
82
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["https://graph.microsoft.com/.default"]);
83
+ ```
84
+
85
+ #### 2.2.3 On-behalf-of provider
86
+
87
+ ```TypeScript
88
+ // @azure/identity
89
+ const credential = new OnBehalfOfCredential({
90
+ tenantId: 'YOUR_TENANT_ID',
91
+ clientId: 'YOUR_CLIENT_ID',
92
+ clientSecret: 'YOUR_CLIENT_SECRET',
93
+ userAssertionToken: 'JWT_TOKEN_TO_EXCHANGE',
94
+ });
95
+
96
+ // @microsoft/kiota-authentication-azure
97
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["https://graph.microsoft.com/.default"]);
98
+ ```
99
+
100
+ #### 2.2.4 Device code provider
101
+
102
+ ```TypeScript
103
+ // @azure/identity
104
+ const credential = new DeviceCodeCredential({
105
+ tenantId: 'YOUR_TENANT_ID',
106
+ clientId: 'YOUR_CLIENT_ID',
107
+ userPromptCallback: (info) => {
108
+ console.log(info.message);
109
+ },
110
+ });
111
+
112
+ // @microsoft/kiota-authentication-azure
113
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["User.Read"]);
114
+ ```
115
+
116
+ #### 2.2.5 Interactive provider
117
+
118
+ ```TypeScript
119
+ // @azure/identity
120
+ const credential = new InteractiveBrowserCredential({
121
+ tenantId: 'YOUR_TENANT_ID',
122
+ clientId: 'YOUR_CLIENT_ID',
123
+ redirectUri: 'http://localhost',
124
+ });
125
+
126
+ // @microsoft/kiota-authentication-azure
127
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["User.Read"]);
128
+ ```
129
+
130
+ #### 2.2.6 Username/password provider
131
+
132
+ ```TypeScript
133
+ // @azure/identity
134
+ const credential = new UsernamePasswordCredential(
135
+ 'YOUR_TENANT_ID',
136
+ 'YOUR_CLIENT_ID',
137
+ 'YOUR_USER_NAME',
138
+ 'YOUR_PASSWORD',
139
+ );
140
+
141
+ // @microsoft/kiota-authentication-azure
142
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["User.Read"]);
143
+ ```
144
+
145
+ ### 2.3 Get a Graph Service Client Adapter object
146
+
147
+ You must get a **GraphServiceClient** object to make requests against the service.
148
+
149
+ ```typescript
150
+ const requestAdapter = new GraphRequestAdapter(authProvider);
151
+ const graphServiceClient = createGraphServiceClient(requestAdapter);
152
+ ```
153
+
154
+ ## 3. Make requests against the service
155
+
156
+ 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).
157
+
158
+ ### 3.1 Get user's detailed information
159
+
160
+ To retrieve the user's detailed information:
161
+
162
+ ```typescript
163
+ import { createGraphServiceClient, GraphRequestAdapter } from "@microsoft/msgraph-sdk";
164
+ import "@microsoft/msgraph-sdk-deviceAppManagement"
165
+
166
+ const requestAdapter = new GraphRequestAdapter(authProvider);
167
+ const graphServiceClient = createGraphServiceClient(requestAdapter);
168
+
169
+ const deviceAppManagement = graphServiceClient.deviceAppManagement.get();
170
+ ```
171
+
172
+ ## 4. Documentation
173
+
174
+ For more detailed documentation, see:
175
+
176
+ * [Overview](https://learn.microsoft.com/graph/overview)
177
+ * [Collections](https://learn.microsoft.com/graph/sdks/paging)
178
+ * [Making requests](https://learn.microsoft.com/graph/sdks/create-requests)
179
+ * [Known issues](https://github.com/MicrosoftGraph/msgraph-sdk-typescript/issues)
180
+ * [Contributions](https://github.com/microsoftgraph/msgraph-sdk-typescript/blob/main/CONTRIBUTING.md)
181
+
182
+ ## 5. Issues
183
+
184
+ For known issues, see [issues](https://github.com/MicrosoftGraph/msgraph-sdk-typescript/issues).
185
+
186
+ ## 6. Contributions
187
+
188
+ 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).
189
+
190
+ ## 7. License
191
+
192
+ Licensed under the [MIT license](https://github.com/microsoftgraph/msgraph-sdk-typescript/blob/main/LICENSE).
193
+
194
+ ## 8. Third-party notices
195
+
196
+ [Third-party notices](https://github.com/microsoftgraph/msgraph-sdk-typescript/blob/main/LICENSE)
@@ -84,7 +84,7 @@ export interface DeviceAppManagementRequestBuilder extends BaseRequestBuilder<De
84
84
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
85
85
  * @returns {Promise<DeviceAppManagement>}
86
86
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
87
- * @see {@link https://learn.microsoft.com/graph/api/intune-unlock-deviceappmanagement-get?view=graph-rest-1.0|Find more info here}
87
+ * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceappmanagement-get?view=graph-rest-1.0|Find more info here}
88
88
  */
89
89
  get(requestConfiguration?: RequestConfiguration<DeviceAppManagementRequestBuilderGetQueryParameters> | undefined): Promise<DeviceAppManagement | undefined>;
90
90
  /**
@@ -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-onboarding-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 managedAppProtection 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-managedappprotection-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 managedAppProtection 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 managedAppProtection objects.
51
51
  */
52
52
  export interface ManagedAppPoliciesRequestBuilderGetQueryParameters {
53
53
  /**
@@ -16,11 +16,11 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder<M
16
16
  */
17
17
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
18
18
  /**
19
- * Read properties and relationships of the managedAppPolicy object.
19
+ * Read properties and relationships of the managedAppConfiguration object.
20
20
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
21
21
  * @returns {Promise<ManagedAppPolicy>}
22
22
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
23
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-get?view=graph-rest-1.0|Find more info here}
23
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-get?view=graph-rest-1.0|Find more info here}
24
24
  */
25
25
  get(requestConfiguration?: RequestConfiguration<ManagedAppPolicyItemRequestBuilderGetQueryParameters> | undefined): Promise<ManagedAppPolicy | undefined>;
26
26
  /**
@@ -38,7 +38,7 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder<M
38
38
  */
39
39
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
40
40
  /**
41
- * Read properties and relationships of the managedAppPolicy object.
41
+ * Read properties and relationships of the managedAppConfiguration object.
42
42
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
43
43
  * @returns {RequestInformation}
44
44
  */
@@ -52,7 +52,7 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder<M
52
52
  toPatchRequestInformation(body: ManagedAppPolicy, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
53
53
  }
54
54
  /**
55
- * Read properties and relationships of the managedAppPolicy object.
55
+ * Read properties and relationships of the managedAppConfiguration object.
56
56
  */
57
57
  export interface ManagedAppPolicyItemRequestBuilderGetQueryParameters {
58
58
  /**
@@ -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-targetedmanagedappprotection-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-targetedmanagedappprotection-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-targetedmanagedappprotection-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
  /**
@@ -17,30 +17,30 @@ export interface AssignmentsRequestBuilder extends BaseRequestBuilder<Assignment
17
17
  */
18
18
  byManagedEBookAssignmentId(managedEBookAssignmentId: string): ManagedEBookAssignmentItemRequestBuilder;
19
19
  /**
20
- * List properties and relationships of the iosVppEBookAssignment objects.
20
+ * List properties and relationships of the managedEBookAssignment objects.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {Promise<ManagedEBookAssignmentCollectionResponse>}
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-iosvppebookassignment-list?view=graph-rest-1.0|Find more info here}
24
+ * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-list?view=graph-rest-1.0|Find more info here}
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
  /**
37
- * List properties and relationships of the iosVppEBookAssignment objects.
37
+ * List properties and relationships of the managedEBookAssignment objects.
38
38
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
39
39
  * @returns {RequestInformation}
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}
@@ -48,7 +48,7 @@ export interface AssignmentsRequestBuilder extends BaseRequestBuilder<Assignment
48
48
  toPostRequestInformation(body: ManagedEBookAssignment, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
49
49
  }
50
50
  /**
51
- * List properties and relationships of the iosVppEBookAssignment objects.
51
+ * List properties and relationships of the managedEBookAssignment objects.
52
52
  */
53
53
  export interface AssignmentsRequestBuilderGetQueryParameters {
54
54
  /**
@@ -5,43 +5,43 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
5
5
  */
6
6
  export interface ManagedEBookAssignmentItemRequestBuilder extends BaseRequestBuilder<ManagedEBookAssignmentItemRequestBuilder> {
7
7
  /**
8
- * Deletes a iosVppEBookAssignment.
8
+ * Deletes a managedEBookAssignment.
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
11
- * @see {@link https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-delete?view=graph-rest-1.0|Find more info here}
11
+ * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-delete?view=graph-rest-1.0|Find more info here}
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
  /**
32
- * Deletes a iosVppEBookAssignment.
32
+ * Deletes a managedEBookAssignment.
33
33
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
34
  * @returns {RequestInformation}
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
  /**
@@ -17,11 +17,11 @@ export interface MobileAppConfigurationsRequestBuilder extends BaseRequestBuilde
17
17
  */
18
18
  byManagedDeviceMobileAppConfigurationId(managedDeviceMobileAppConfigurationId: string): ManagedDeviceMobileAppConfigurationItemRequestBuilder;
19
19
  /**
20
- * List properties and relationships of the iosMobileAppConfiguration objects.
20
+ * List properties and relationships of the managedDeviceMobileAppConfiguration objects.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {Promise<ManagedDeviceMobileAppConfigurationCollectionResponse>}
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-apps-iosmobileappconfiguration-list?view=graph-rest-1.0|Find more info here}
24
+ * @see {@link https://learn.microsoft.com/graph/api/intune-apps-manageddevicemobileappconfiguration-list?view=graph-rest-1.0|Find more info here}
25
25
  */
26
26
  get(requestConfiguration?: RequestConfiguration<MobileAppConfigurationsRequestBuilderGetQueryParameters> | undefined): Promise<ManagedDeviceMobileAppConfigurationCollectionResponse | undefined>;
27
27
  /**
@@ -34,7 +34,7 @@ export interface MobileAppConfigurationsRequestBuilder extends BaseRequestBuilde
34
34
  */
35
35
  post(body: ManagedDeviceMobileAppConfiguration, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ManagedDeviceMobileAppConfiguration | undefined>;
36
36
  /**
37
- * List properties and relationships of the iosMobileAppConfiguration objects.
37
+ * List properties and relationships of the managedDeviceMobileAppConfiguration 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 MobileAppConfigurationsRequestBuilder extends BaseRequestBuilde
48
48
  toPostRequestInformation(body: ManagedDeviceMobileAppConfiguration, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
49
49
  }
50
50
  /**
51
- * List properties and relationships of the iosMobileAppConfiguration objects.
51
+ * List properties and relationships of the managedDeviceMobileAppConfiguration objects.
52
52
  */
53
53
  export interface MobileAppConfigurationsRequestBuilderGetQueryParameters {
54
54
  /**