@@ -12286,6 +12286,7 @@ paths:
1228612286 - appRoleAssignments
1228712287 - claimsMappingPolicies
1228812288 - createdObjects
12289+ - delegatedPermissionClassifications
1228912290 - endpoints
1229012291 - homeRealmDiscoveryPolicies
1229112292 - licenseDetails
@@ -12313,6 +12314,7 @@ paths:
1231312314 - appRoleAssignments
1231412315 - claimsMappingPolicies
1231512316 - createdObjects
12317+ - delegatedPermissionClassifications
1231612318 - endpoints
1231712319 - homeRealmDiscoveryPolicies
1231812320 - licenseDetails
@@ -12445,6 +12447,7 @@ paths:
1244512447 - appRoleAssignments
1244612448 - claimsMappingPolicies
1244712449 - createdObjects
12450+ - delegatedPermissionClassifications
1244812451 - endpoints
1244912452 - homeRealmDiscoveryPolicies
1245012453 - licenseDetails
@@ -12472,6 +12475,7 @@ paths:
1247212475 - appRoleAssignments
1247312476 - claimsMappingPolicies
1247412477 - createdObjects
12478+ - delegatedPermissionClassifications
1247512479 - endpoints
1247612480 - homeRealmDiscoveryPolicies
1247712481 - licenseDetails
@@ -12508,6 +12512,10 @@ paths:
1250812512 operationId: servicePrincipals.ListCreatedObjects
1250912513 parameters:
1251012514 servicePrincipal-id: $request.path.servicePrincipal-id
12515+ delegatedPermissionClassifications:
12516+ operationId: servicePrincipals.ListDelegatedPermissionClassifications
12517+ parameters:
12518+ servicePrincipal-id: $request.path.servicePrincipal-id
1251112519 endpoints:
1251212520 operationId: servicePrincipals.ListEndpoints
1251312521 parameters:
@@ -13485,6 +13493,246 @@ paths:
1348513493 default:
1348613494 $ref: '#/components/responses/error'
1348713495 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
1348813736 '/servicePrincipals/{servicePrincipal-id}/endpoints':
1348913737 get:
1349013738 tags:
@@ -18479,7 +18727,7 @@ components:
1847918727 nullable: true
1848018728 key:
1848118729 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()).'
1848318731 format: base64url
1848418732 nullable: true
1848518733 keyId:
@@ -19188,6 +19436,10 @@ components:
1918819436 items:
1918919437 $ref: '#/components/schemas/microsoft.graph.directoryObject'
1919019438 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'
1919119443 endpoints:
1919219444 type: array
1919319445 items:
@@ -19249,6 +19501,22 @@ components:
1924919501 additionalProperties:
1925019502 type: object
1925119503 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
1925219520 microsoft.graph.endpoint:
1925319521 allOf:
1925419522 - $ref: '#/components/schemas/microsoft.graph.directoryObject'
@@ -20088,6 +20356,14 @@ components:
2008820356 nullable: true
2008920357 additionalProperties:
2009020358 type: object
20359+ microsoft.graph.permissionClassificationType:
20360+ title: permissionClassificationType
20361+ enum:
20362+ - low
20363+ - medium
20364+ - high
20365+ - unknownFutureValue
20366+ type: string
2009120367 microsoft.graph.servicePlanInfo:
2009220368 title: servicePlanInfo
2009320369 type: object
0 commit comments