@microsoft/msgraph-sdk-devicemanagement 1.0.0-preview.30 → 1.0.0-preview.39
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/deviceManagement/deviceCompliancePolicies/index.d.ts +7 -7
- package/deviceManagement/deviceCompliancePolicies/item/index.d.ts +7 -7
- package/deviceManagement/deviceConfigurations/index.d.ts +7 -7
- package/deviceManagement/deviceConfigurations/item/index.d.ts +10 -10
- package/deviceManagement/deviceEnrollmentConfigurations/index.d.ts +7 -7
- package/deviceManagement/deviceEnrollmentConfigurations/item/index.d.ts +10 -10
- package/deviceManagement/index.d.ts +2 -2
- package/deviceManagement/reports/index.d.ts +5 -0
- package/deviceManagement/reports/index.d.ts.map +1 -1
- package/deviceManagement/reports/index.js +5 -0
- package/deviceManagement/reports/index.js.map +1 -1
- package/deviceManagement/reports/retrieveDeviceAppInstallationStatusReport/index.d.ts +92 -0
- package/deviceManagement/reports/retrieveDeviceAppInstallationStatusReport/index.d.ts.map +1 -0
- package/deviceManagement/reports/retrieveDeviceAppInstallationStatusReport/index.js +76 -0
- package/deviceManagement/reports/retrieveDeviceAppInstallationStatusReport/index.js.map +1 -0
- package/deviceManagement/roleDefinitions/index.d.ts +3 -3
- package/deviceManagement/roleDefinitions/item/index.d.ts +3 -3
- package/deviceManagement/virtualEndpoint/provisioningPolicies/item/assignments/item/assignedUsersWithUserPrincipalName/index.d.ts +42 -0
- package/deviceManagement/virtualEndpoint/provisioningPolicies/item/assignments/item/assignedUsersWithUserPrincipalName/index.d.ts.map +1 -0
- package/deviceManagement/virtualEndpoint/provisioningPolicies/item/assignments/item/assignedUsersWithUserPrincipalName/index.js +36 -0
- package/deviceManagement/virtualEndpoint/provisioningPolicies/item/assignments/item/assignedUsersWithUserPrincipalName/index.js.map +1 -0
- package/deviceManagement/virtualEndpoint/provisioningPolicies/item/assignments/item/index.d.ts +7 -0
- package/deviceManagement/virtualEndpoint/provisioningPolicies/item/assignments/item/index.d.ts.map +1 -1
- package/deviceManagement/virtualEndpoint/provisioningPolicies/item/assignments/item/index.js +6 -0
- package/deviceManagement/virtualEndpoint/provisioningPolicies/item/assignments/item/index.js.map +1 -1
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -25,12 +25,12 @@ export interface RoleDefinitionsRequestBuilder extends BaseRequestBuilder<RoleDe
|
|
|
25
25
|
*/
|
|
26
26
|
get(requestConfiguration?: RequestConfiguration<RoleDefinitionsRequestBuilderGetQueryParameters> | undefined): Promise<RoleDefinitionCollectionResponse | undefined>;
|
|
27
27
|
/**
|
|
28
|
-
* Create a new
|
|
28
|
+
* Create a new deviceAndAppManagementRoleDefinition 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<RoleDefinition>}
|
|
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-rbac-
|
|
33
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-rbac-deviceandappmanagementroledefinition-create?view=graph-rest-1.0|Find more info here}
|
|
34
34
|
*/
|
|
35
35
|
post(body: RoleDefinition, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<RoleDefinition | undefined>;
|
|
36
36
|
/**
|
|
@@ -40,7 +40,7 @@ export interface RoleDefinitionsRequestBuilder extends BaseRequestBuilder<RoleDe
|
|
|
40
40
|
*/
|
|
41
41
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<RoleDefinitionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
42
42
|
/**
|
|
43
|
-
* Create a new
|
|
43
|
+
* Create a new deviceAndAppManagementRoleDefinition 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}
|
|
@@ -10,10 +10,10 @@ export interface RoleDefinitionItemRequestBuilder extends BaseRequestBuilder<Rol
|
|
|
10
10
|
*/
|
|
11
11
|
get roleAssignments(): RoleAssignmentsRequestBuilder;
|
|
12
12
|
/**
|
|
13
|
-
* Deletes a
|
|
13
|
+
* Deletes a roleDefinition.
|
|
14
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
15
15
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
16
|
-
* @see {@link https://learn.microsoft.com/graph/api/intune-rbac-
|
|
16
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-rbac-roledefinition-delete?view=graph-rest-1.0|Find more info here}
|
|
17
17
|
*/
|
|
18
18
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
19
19
|
/**
|
|
@@ -34,7 +34,7 @@ export interface RoleDefinitionItemRequestBuilder extends BaseRequestBuilder<Rol
|
|
|
34
34
|
*/
|
|
35
35
|
patch(body: RoleDefinition, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<RoleDefinition | undefined>;
|
|
36
36
|
/**
|
|
37
|
-
* Deletes a
|
|
37
|
+
* Deletes a roleDefinition.
|
|
38
38
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
39
|
* @returns {RequestInformation}
|
|
40
40
|
*/
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { type User } 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 assignedUsers property of the microsoft.graph.cloudPcProvisioningPolicyAssignment entity.
|
|
5
|
+
*/
|
|
6
|
+
export interface AssignedUsersWithUserPrincipalNameRequestBuilder extends BaseRequestBuilder<AssignedUsersWithUserPrincipalNameRequestBuilder> {
|
|
7
|
+
/**
|
|
8
|
+
* The assignment targeted users for the provisioning policy. This list of users is computed based on assignments, licenses, group memberships, and policies. Read-only. Supports$expand.
|
|
9
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
10
|
+
* @returns {Promise<User>}
|
|
11
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
12
|
+
*/
|
|
13
|
+
get(requestConfiguration?: RequestConfiguration<AssignedUsersWithUserPrincipalNameRequestBuilderGetQueryParameters> | undefined): Promise<User | undefined>;
|
|
14
|
+
/**
|
|
15
|
+
* The assignment targeted users for the provisioning policy. This list of users is computed based on assignments, licenses, group memberships, and policies. Read-only. Supports$expand.
|
|
16
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
|
+
* @returns {RequestInformation}
|
|
18
|
+
*/
|
|
19
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AssignedUsersWithUserPrincipalNameRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* The assignment targeted users for the provisioning policy. This list of users is computed based on assignments, licenses, group memberships, and policies. Read-only. Supports$expand.
|
|
23
|
+
*/
|
|
24
|
+
export interface AssignedUsersWithUserPrincipalNameRequestBuilderGetQueryParameters {
|
|
25
|
+
/**
|
|
26
|
+
* Expand related entities
|
|
27
|
+
*/
|
|
28
|
+
expand?: string[];
|
|
29
|
+
/**
|
|
30
|
+
* Select properties to be returned
|
|
31
|
+
*/
|
|
32
|
+
select?: string[];
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Uri template for the request builder.
|
|
36
|
+
*/
|
|
37
|
+
export declare const AssignedUsersWithUserPrincipalNameRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy%2Did}/assignments/{cloudPcProvisioningPolicyAssignment%2Did}/assignedUsers(userPrincipalName='{userPrincipalName}'){?%24expand,%24select}";
|
|
38
|
+
/**
|
|
39
|
+
* Metadata for all the requests in the request builder.
|
|
40
|
+
*/
|
|
41
|
+
export declare const AssignedUsersWithUserPrincipalNameRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
42
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAoC,KAAK,IAAI,EAAE,MAAM,wCAAwC,CAAC;AAIrG,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,gDAAiD,SAAQ,kBAAkB,CAAC,gDAAgD,CAAC;IAC1I;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,kEAAkE,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,GAAG,SAAS,CAAC,CAAC;IAC9J;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,kEAAkE,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC9K;AACD;;GAEG;AACH,MAAM,WAAW,kEAAkE;IAC/E;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,2DAA2D,0OAA0O,CAAC;AAQnT;;GAEG;AACH,eAAO,MAAM,gEAAgE,EAAE,gBAW9E,CAAC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// Generated by Microsoft Kiota
|
|
4
|
+
// @ts-ignore
|
|
5
|
+
import { createUserFromDiscriminatorValue } 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 AssignedUsersWithUserPrincipalNameRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy%2Did}/assignments/{cloudPcProvisioningPolicyAssignment%2Did}/assignedUsers(userPrincipalName='{userPrincipalName}'){?%24expand,%24select}";
|
|
12
|
+
/**
|
|
13
|
+
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
14
|
+
*/
|
|
15
|
+
const AssignedUsersWithUserPrincipalNameRequestBuilderGetQueryParametersMapper = {
|
|
16
|
+
"expand": "%24expand",
|
|
17
|
+
"select": "%24select",
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* Metadata for all the requests in the request builder.
|
|
21
|
+
*/
|
|
22
|
+
export const AssignedUsersWithUserPrincipalNameRequestBuilderRequestsMetadata = {
|
|
23
|
+
get: {
|
|
24
|
+
uriTemplate: AssignedUsersWithUserPrincipalNameRequestBuilderUriTemplate,
|
|
25
|
+
responseBodyContentType: "application/json",
|
|
26
|
+
errorMappings: {
|
|
27
|
+
XXX: createODataErrorFromDiscriminatorValue,
|
|
28
|
+
},
|
|
29
|
+
adapterMethodName: "send",
|
|
30
|
+
responseBodyFactory: createUserFromDiscriminatorValue,
|
|
31
|
+
queryParametersMapper: AssignedUsersWithUserPrincipalNameRequestBuilderGetQueryParametersMapper,
|
|
32
|
+
},
|
|
33
|
+
};
|
|
34
|
+
/* tslint:enable */
|
|
35
|
+
/* eslint-enable */
|
|
36
|
+
//# 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,gCAAgC,EAAa,MAAM,wCAAwC,CAAC;AACrG,aAAa;AACb,OAAO,EAAE,sCAAsC,EAAmB,MAAM,oDAAoD,CAAC;AAmC7H;;GAEG;AACH,MAAM,CAAC,MAAM,2DAA2D,GAAG,uOAAuO,CAAC;AACnT;;GAEG;AACH,MAAM,wEAAwE,GAA2B;IACrG,QAAQ,EAAE,WAAW;IACrB,QAAQ,EAAE,WAAW;CACxB,CAAC;AACF;;GAEG;AACH,MAAM,CAAC,MAAM,gEAAgE,GAAqB;IAC9F,GAAG,EAAE;QACD,WAAW,EAAE,2DAA2D;QACxE,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,sCAAmE;SAC3E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,gCAAgC;QACtD,qBAAqB,EAAE,wEAAwE;KAClG;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|
package/deviceManagement/virtualEndpoint/provisioningPolicies/item/assignments/item/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type CloudPcProvisioningPolicyAssignment } from '@microsoft/msgraph-sdk/models/index.js';
|
|
2
2
|
import { type AssignedUsersRequestBuilder } from './assignedUsers/index.js';
|
|
3
|
+
import { type AssignedUsersWithUserPrincipalNameRequestBuilder } from './assignedUsersWithUserPrincipalName/index.js';
|
|
3
4
|
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
4
5
|
/**
|
|
5
6
|
* Provides operations to manage the assignments property of the microsoft.graph.cloudPcProvisioningPolicy entity.
|
|
@@ -9,6 +10,12 @@ export interface CloudPcProvisioningPolicyAssignmentItemRequestBuilder extends B
|
|
|
9
10
|
* Provides operations to manage the assignedUsers property of the microsoft.graph.cloudPcProvisioningPolicyAssignment entity.
|
|
10
11
|
*/
|
|
11
12
|
get assignedUsers(): AssignedUsersRequestBuilder;
|
|
13
|
+
/**
|
|
14
|
+
* Provides operations to manage the assignedUsers property of the microsoft.graph.cloudPcProvisioningPolicyAssignment entity.
|
|
15
|
+
* @param userPrincipalName Alternate key of user
|
|
16
|
+
* @returns {AssignedUsersWithUserPrincipalNameRequestBuilder}
|
|
17
|
+
*/
|
|
18
|
+
assignedUsersWithUserPrincipalName(userPrincipalName: string | undefined): AssignedUsersWithUserPrincipalNameRequestBuilder;
|
|
12
19
|
/**
|
|
13
20
|
* Delete navigation property assignments for deviceManagement
|
|
14
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
package/deviceManagement/virtualEndpoint/provisioningPolicies/item/assignments/item/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiH,KAAK,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAIjN,OAAO,EAA8F,KAAK,2BAA2B,EAAE,MAAM,0BAA0B,CAAC;AAExK,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,qDAAsD,SAAQ,kBAAkB,CAAC,qDAAqD,CAAC;IACpJ;;OAEG;IACH,IAAI,aAAa,IAAI,2BAA2B,CAAC;IACjD;;;;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,uEAAuE,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,mCAAmC,GAAG,SAAS,CAAC,CAAC;IAClM;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,mCAAmC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,mCAAmC,GAAG,SAAS,CAAC,CAAC;IAC9K;;;;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,uEAAuE,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChL;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,mCAAmC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC/J;AACD;;GAEG;AACH,MAAM,WAAW,uEAAuE;IACpF;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,gEAAgE,mLAAmL,CAAC;AAQjQ;;GAEG;AACH,eAAO,MAAM,uEAAuE,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,qDAAqD,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiH,KAAK,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAIjN,OAAO,EAA8F,KAAK,2BAA2B,EAAE,MAAM,0BAA0B,CAAC;AAExK,OAAO,EAAoE,KAAK,gDAAgD,EAAE,MAAM,+CAA+C,CAAC;AAExL,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,qDAAsD,SAAQ,kBAAkB,CAAC,qDAAqD,CAAC;IACpJ;;OAEG;IACH,IAAI,aAAa,IAAI,2BAA2B,CAAC;IACjD;;;;OAIG;IACF,kCAAkC,CAAC,iBAAiB,EAAE,MAAM,GAAG,SAAS,GAAI,gDAAgD,CAAC;IAC9H;;;;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,uEAAuE,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,mCAAmC,GAAG,SAAS,CAAC,CAAC;IAClM;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,mCAAmC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,mCAAmC,GAAG,SAAS,CAAC,CAAC;IAC9K;;;;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,uEAAuE,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChL;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,mCAAmC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC/J;AACD;;GAEG;AACH,MAAM,WAAW,uEAAuE;IACpF;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,gEAAgE,mLAAmL,CAAC;AAQjQ;;GAEG;AACH,eAAO,MAAM,uEAAuE,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,qDAAqD,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CASxN,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,qEAAqE,EAAE,gBA+BnF,CAAC"}
|
package/deviceManagement/virtualEndpoint/provisioningPolicies/item/assignments/item/index.js
CHANGED
|
@@ -7,6 +7,8 @@ import { createCloudPcProvisioningPolicyAssignmentFromDiscriminatorValue, serial
|
|
|
7
7
|
import { createODataErrorFromDiscriminatorValue } from '@microsoft/msgraph-sdk/models/oDataErrors/index.js';
|
|
8
8
|
// @ts-ignore
|
|
9
9
|
import { AssignedUsersRequestBuilderNavigationMetadata, AssignedUsersRequestBuilderRequestsMetadata } from './assignedUsers/index.js';
|
|
10
|
+
// @ts-ignore
|
|
11
|
+
import { AssignedUsersWithUserPrincipalNameRequestBuilderRequestsMetadata } from './assignedUsersWithUserPrincipalName/index.js';
|
|
10
12
|
/**
|
|
11
13
|
* Uri template for the request builder.
|
|
12
14
|
*/
|
|
@@ -22,6 +24,10 @@ const CloudPcProvisioningPolicyAssignmentItemRequestBuilderGetQueryParametersMap
|
|
|
22
24
|
* Metadata for all the navigation properties in the request builder.
|
|
23
25
|
*/
|
|
24
26
|
export const CloudPcProvisioningPolicyAssignmentItemRequestBuilderNavigationMetadata = {
|
|
27
|
+
assignedUsersWithUserPrincipalName: {
|
|
28
|
+
requestsMetadata: AssignedUsersWithUserPrincipalNameRequestBuilderRequestsMetadata,
|
|
29
|
+
pathParametersMappings: ["userPrincipalName"],
|
|
30
|
+
},
|
|
25
31
|
assignedUsers: {
|
|
26
32
|
requestsMetadata: AssignedUsersRequestBuilderRequestsMetadata,
|
|
27
33
|
navigationMetadata: AssignedUsersRequestBuilderNavigationMetadata,
|
package/deviceManagement/virtualEndpoint/provisioningPolicies/item/assignments/item/index.js.map
CHANGED
|
@@ -1 +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,+DAA+D,EAAE,4CAA4C,EAA4C,MAAM,wCAAwC,CAAC;AACjN,aAAa;AACb,OAAO,EAAE,sCAAsC,EAAmB,MAAM,oDAAoD,CAAC;AAC7H,aAAa;AACb,OAAO,EAAE,6CAA6C,EAAE,2CAA2C,EAAoC,MAAM,0BAA0B,CAAC;
|
|
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,+DAA+D,EAAE,4CAA4C,EAA4C,MAAM,wCAAwC,CAAC;AACjN,aAAa;AACb,OAAO,EAAE,sCAAsC,EAAmB,MAAM,oDAAoD,CAAC;AAC7H,aAAa;AACb,OAAO,EAAE,6CAA6C,EAAE,2CAA2C,EAAoC,MAAM,0BAA0B,CAAC;AACxK,aAAa;AACb,OAAO,EAAE,gEAAgE,EAAyD,MAAM,+CAA+C,CAAC;AAwExL;;GAEG;AACH,MAAM,CAAC,MAAM,gEAAgE,GAAG,gLAAgL,CAAC;AACjQ;;GAEG;AACH,MAAM,6EAA6E,GAA2B;IAC1G,QAAQ,EAAE,WAAW;IACrB,QAAQ,EAAE,WAAW;CACxB,CAAC;AACF;;GAEG;AACH,MAAM,CAAC,MAAM,uEAAuE,GAAyI;IACzN,kCAAkC,EAAE;QAChC,gBAAgB,EAAE,gEAAgE;QAClF,sBAAsB,EAAE,CAAC,mBAAmB,CAAC;KAChD;IACD,aAAa,EAAE;QACX,gBAAgB,EAAE,2CAA2C;QAC7D,kBAAkB,EAAE,6CAA6C;KACpE;CACJ,CAAC;AACF;;GAEG;AACH,MAAM,CAAC,MAAM,qEAAqE,GAAqB;IACnG,MAAM,EAAE;QACJ,WAAW,EAAE,gEAAgE;QAC7E,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,sCAAmE;SAC3E;QACD,iBAAiB,EAAE,uBAAuB;KAC7C;IACD,GAAG,EAAE;QACD,WAAW,EAAE,gEAAgE;QAC7E,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,sCAAmE;SAC3E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,+DAA+D;QACrF,qBAAqB,EAAE,6EAA6E;KACvG;IACD,KAAK,EAAE;QACH,WAAW,EAAE,gEAAgE;QAC7E,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,sCAAmE;SAC3E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,+DAA+D;QACrF,sBAAsB,EAAE,kBAAkB;QAC1C,qBAAqB,EAAE,4CAA4C;QACnE,kCAAkC,EAAE,wBAAwB;KAC/D;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/msgraph-sdk-devicemanagement",
|
|
3
|
-
"version": "1.0.0-preview.
|
|
3
|
+
"version": "1.0.0-preview.39",
|
|
4
4
|
"description": "DeviceManagement fluent API for Microsoft Graph",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Microsoft",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"typescript": "^5.3.3"
|
|
44
44
|
},
|
|
45
45
|
"type": "module",
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "78cd8aa67068f43ea6474b2d1f544ffd81a47638"
|
|
47
47
|
}
|