@@ -12286,6 +12286,7 @@ paths:
12286
12286
- appRoleAssignments
12287
12287
- claimsMappingPolicies
12288
12288
- createdObjects
12289
+ - delegatedPermissionClassifications
12289
12290
- endpoints
12290
12291
- homeRealmDiscoveryPolicies
12291
12292
- licenseDetails
@@ -12313,6 +12314,7 @@ paths:
12313
12314
- appRoleAssignments
12314
12315
- claimsMappingPolicies
12315
12316
- createdObjects
12317
+ - delegatedPermissionClassifications
12316
12318
- endpoints
12317
12319
- homeRealmDiscoveryPolicies
12318
12320
- licenseDetails
@@ -12445,6 +12447,7 @@ paths:
12445
12447
- appRoleAssignments
12446
12448
- claimsMappingPolicies
12447
12449
- createdObjects
12450
+ - delegatedPermissionClassifications
12448
12451
- endpoints
12449
12452
- homeRealmDiscoveryPolicies
12450
12453
- licenseDetails
@@ -12472,6 +12475,7 @@ paths:
12472
12475
- appRoleAssignments
12473
12476
- claimsMappingPolicies
12474
12477
- createdObjects
12478
+ - delegatedPermissionClassifications
12475
12479
- endpoints
12476
12480
- homeRealmDiscoveryPolicies
12477
12481
- licenseDetails
@@ -12508,6 +12512,10 @@ paths:
12508
12512
operationId: servicePrincipals.ListCreatedObjects
12509
12513
parameters:
12510
12514
servicePrincipal-id: $request.path.servicePrincipal-id
12515
+ delegatedPermissionClassifications:
12516
+ operationId: servicePrincipals.ListDelegatedPermissionClassifications
12517
+ parameters:
12518
+ servicePrincipal-id: $request.path.servicePrincipal-id
12511
12519
endpoints:
12512
12520
operationId: servicePrincipals.ListEndpoints
12513
12521
parameters:
@@ -13485,6 +13493,246 @@ paths:
13485
13493
default:
13486
13494
$ref: '#/components/responses/error'
13487
13495
x-ms-docs-operation-type: operation
13496
+ '/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications':
13497
+ get:
13498
+ tags:
13499
+ - servicePrincipals.delegatedPermissionClassification
13500
+ summary: Get delegatedPermissionClassifications from servicePrincipals
13501
+ operationId: servicePrincipals_ListDelegatedPermissionClassifications
13502
+ parameters:
13503
+ - name: servicePrincipal-id
13504
+ in: path
13505
+ description: 'key: id of servicePrincipal'
13506
+ required: true
13507
+ schema:
13508
+ type: string
13509
+ x-ms-docs-key-type: servicePrincipal
13510
+ - $ref: '#/components/parameters/top'
13511
+ - $ref: '#/components/parameters/skip'
13512
+ - $ref: '#/components/parameters/search'
13513
+ - $ref: '#/components/parameters/filter'
13514
+ - $ref: '#/components/parameters/count'
13515
+ - name: $orderby
13516
+ in: query
13517
+ description: Order items by property values
13518
+ style: form
13519
+ explode: false
13520
+ schema:
13521
+ uniqueItems: true
13522
+ type: array
13523
+ items:
13524
+ enum:
13525
+ - id
13526
+ - id desc
13527
+ - classification
13528
+ - classification desc
13529
+ - permissionId
13530
+ - permissionId desc
13531
+ - permissionName
13532
+ - permissionName desc
13533
+ type: string
13534
+ - name: $select
13535
+ in: query
13536
+ description: Select properties to be returned
13537
+ style: form
13538
+ explode: false
13539
+ schema:
13540
+ uniqueItems: true
13541
+ type: array
13542
+ items:
13543
+ enum:
13544
+ - id
13545
+ - classification
13546
+ - permissionId
13547
+ - permissionName
13548
+ type: string
13549
+ - name: $expand
13550
+ in: query
13551
+ description: Expand related entities
13552
+ style: form
13553
+ explode: false
13554
+ schema:
13555
+ uniqueItems: true
13556
+ type: array
13557
+ items:
13558
+ enum:
13559
+ - '*'
13560
+ type: string
13561
+ responses:
13562
+ '200':
13563
+ description: Retrieved navigation property
13564
+ content:
13565
+ application/json:
13566
+ schema:
13567
+ title: Collection of delegatedPermissionClassification
13568
+ type: object
13569
+ properties:
13570
+ value:
13571
+ type: array
13572
+ items:
13573
+ $ref: '#/components/schemas/microsoft.graph.delegatedPermissionClassification'
13574
+ '@odata.nextLink':
13575
+ type: string
13576
+ additionalProperties:
13577
+ type: object
13578
+ default:
13579
+ $ref: '#/components/responses/error'
13580
+ x-ms-pageable:
13581
+ nextLinkName: '@odata.nextLink'
13582
+ operationName: listMore
13583
+ x-ms-docs-operation-type: operation
13584
+ post:
13585
+ tags:
13586
+ - servicePrincipals.delegatedPermissionClassification
13587
+ summary: Create new navigation property to delegatedPermissionClassifications for servicePrincipals
13588
+ operationId: servicePrincipals_CreateDelegatedPermissionClassifications
13589
+ parameters:
13590
+ - name: servicePrincipal-id
13591
+ in: path
13592
+ description: 'key: id of servicePrincipal'
13593
+ required: true
13594
+ schema:
13595
+ type: string
13596
+ x-ms-docs-key-type: servicePrincipal
13597
+ requestBody:
13598
+ description: New navigation property
13599
+ content:
13600
+ application/json:
13601
+ schema:
13602
+ $ref: '#/components/schemas/microsoft.graph.delegatedPermissionClassification'
13603
+ required: true
13604
+ responses:
13605
+ '201':
13606
+ description: Created navigation property.
13607
+ content:
13608
+ application/json:
13609
+ schema:
13610
+ $ref: '#/components/schemas/microsoft.graph.delegatedPermissionClassification'
13611
+ default:
13612
+ $ref: '#/components/responses/error'
13613
+ x-ms-docs-operation-type: operation
13614
+ '/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}':
13615
+ get:
13616
+ tags:
13617
+ - servicePrincipals.delegatedPermissionClassification
13618
+ summary: Get delegatedPermissionClassifications from servicePrincipals
13619
+ operationId: servicePrincipals_GetDelegatedPermissionClassifications
13620
+ parameters:
13621
+ - name: servicePrincipal-id
13622
+ in: path
13623
+ description: 'key: id of servicePrincipal'
13624
+ required: true
13625
+ schema:
13626
+ type: string
13627
+ x-ms-docs-key-type: servicePrincipal
13628
+ - name: delegatedPermissionClassification-id
13629
+ in: path
13630
+ description: 'key: id of delegatedPermissionClassification'
13631
+ required: true
13632
+ schema:
13633
+ type: string
13634
+ x-ms-docs-key-type: delegatedPermissionClassification
13635
+ - name: $select
13636
+ in: query
13637
+ description: Select properties to be returned
13638
+ style: form
13639
+ explode: false
13640
+ schema:
13641
+ uniqueItems: true
13642
+ type: array
13643
+ items:
13644
+ enum:
13645
+ - id
13646
+ - classification
13647
+ - permissionId
13648
+ - permissionName
13649
+ type: string
13650
+ - name: $expand
13651
+ in: query
13652
+ description: Expand related entities
13653
+ style: form
13654
+ explode: false
13655
+ schema:
13656
+ uniqueItems: true
13657
+ type: array
13658
+ items:
13659
+ enum:
13660
+ - '*'
13661
+ type: string
13662
+ responses:
13663
+ '200':
13664
+ description: Retrieved navigation property
13665
+ content:
13666
+ application/json:
13667
+ schema:
13668
+ $ref: '#/components/schemas/microsoft.graph.delegatedPermissionClassification'
13669
+ default:
13670
+ $ref: '#/components/responses/error'
13671
+ x-ms-docs-operation-type: operation
13672
+ patch:
13673
+ tags:
13674
+ - servicePrincipals.delegatedPermissionClassification
13675
+ summary: Update the navigation property delegatedPermissionClassifications in servicePrincipals
13676
+ operationId: servicePrincipals_UpdateDelegatedPermissionClassifications
13677
+ parameters:
13678
+ - name: servicePrincipal-id
13679
+ in: path
13680
+ description: 'key: id of servicePrincipal'
13681
+ required: true
13682
+ schema:
13683
+ type: string
13684
+ x-ms-docs-key-type: servicePrincipal
13685
+ - name: delegatedPermissionClassification-id
13686
+ in: path
13687
+ description: 'key: id of delegatedPermissionClassification'
13688
+ required: true
13689
+ schema:
13690
+ type: string
13691
+ x-ms-docs-key-type: delegatedPermissionClassification
13692
+ requestBody:
13693
+ description: New navigation property values
13694
+ content:
13695
+ application/json:
13696
+ schema:
13697
+ $ref: '#/components/schemas/microsoft.graph.delegatedPermissionClassification'
13698
+ required: true
13699
+ responses:
13700
+ '204':
13701
+ description: Success
13702
+ default:
13703
+ $ref: '#/components/responses/error'
13704
+ x-ms-docs-operation-type: operation
13705
+ delete:
13706
+ tags:
13707
+ - servicePrincipals.delegatedPermissionClassification
13708
+ summary: Delete navigation property delegatedPermissionClassifications for servicePrincipals
13709
+ operationId: servicePrincipals_DeleteDelegatedPermissionClassifications
13710
+ parameters:
13711
+ - name: servicePrincipal-id
13712
+ in: path
13713
+ description: 'key: id of servicePrincipal'
13714
+ required: true
13715
+ schema:
13716
+ type: string
13717
+ x-ms-docs-key-type: servicePrincipal
13718
+ - name: delegatedPermissionClassification-id
13719
+ in: path
13720
+ description: 'key: id of delegatedPermissionClassification'
13721
+ required: true
13722
+ schema:
13723
+ type: string
13724
+ x-ms-docs-key-type: delegatedPermissionClassification
13725
+ - name: If-Match
13726
+ in: header
13727
+ description: ETag
13728
+ schema:
13729
+ type: string
13730
+ responses:
13731
+ '204':
13732
+ description: Success
13733
+ default:
13734
+ $ref: '#/components/responses/error'
13735
+ x-ms-docs-operation-type: operation
13488
13736
'/servicePrincipals/{servicePrincipal-id}/endpoints':
13489
13737
get:
13490
13738
tags:
@@ -18479,7 +18727,7 @@ components:
18479
18727
nullable: true
18480
18728
key:
18481
18729
type: string
18482
- description: Value for the key credential. Should be a base 64 encoded value.
18730
+ description: 'The certificate''s raw data in byte array converted to Base64 string; for example, [System.Convert]::ToBase64String($Cert.GetRawCertData()).'
18483
18731
format: base64url
18484
18732
nullable: true
18485
18733
keyId:
@@ -19188,6 +19436,10 @@ components:
19188
19436
items:
19189
19437
$ref: '#/components/schemas/microsoft.graph.directoryObject'
19190
19438
description: Directory objects created by this service principal. Read-only. Nullable.
19439
+ delegatedPermissionClassifications:
19440
+ type: array
19441
+ items:
19442
+ $ref: '#/components/schemas/microsoft.graph.delegatedPermissionClassification'
19191
19443
endpoints:
19192
19444
type: array
19193
19445
items:
@@ -19249,6 +19501,22 @@ components:
19249
19501
additionalProperties:
19250
19502
type: object
19251
19503
description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
19504
+ microsoft.graph.delegatedPermissionClassification:
19505
+ allOf:
19506
+ - $ref: '#/components/schemas/microsoft.graph.entity'
19507
+ - title: delegatedPermissionClassification
19508
+ type: object
19509
+ properties:
19510
+ classification:
19511
+ $ref: '#/components/schemas/microsoft.graph.permissionClassificationType'
19512
+ permissionId:
19513
+ type: string
19514
+ nullable: true
19515
+ permissionName:
19516
+ type: string
19517
+ nullable: true
19518
+ additionalProperties:
19519
+ type: object
19252
19520
microsoft.graph.endpoint:
19253
19521
allOf:
19254
19522
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
@@ -20088,6 +20356,14 @@ components:
20088
20356
nullable: true
20089
20357
additionalProperties:
20090
20358
type: object
20359
+ microsoft.graph.permissionClassificationType:
20360
+ title: permissionClassificationType
20361
+ enum:
20362
+ - low
20363
+ - medium
20364
+ - high
20365
+ - unknownFutureValue
20366
+ type: string
20091
20367
microsoft.graph.servicePlanInfo:
20092
20368
title: servicePlanInfo
20093
20369
type: object
0 commit comments