-
Notifications
You must be signed in to change notification settings - Fork 65
Closed
Labels
priority:p3Nice to have. Customer impact is very minimalNice to have. Customer impact is very minimal
Milestone
Description
Powershell commands with delta functions are missing the $select query parameter. The various yaml files extracted from openApi are missing the select properties to be returned. Any delta related command on powershell e.g Get-MgContactDelta -Property "displayName,jobTitle,mail" will throw an error " A parameter cannot be found that matches parameter name 'Property'"

Current representation
/contacts/microsoft.graph.delta():
get:
tags:
- contacts.Functions
summary: Invoke function delta
operationId: contacts_delta
responses:
'200':
description: Success
content:
application/json:
schema:
title: Collection of orgContact
type: object
properties:
value:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.orgContact'
additionalProperties:
type: object
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: functionIdeal representation
/contacts/microsoft.graph.delta():
get:
tags:
- contacts.Functions
summary: Invoke function delta
operationId: contacts_delta
parameters:
- name: $select
in: query
description: Select properties to be returned
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
enum:
- id
- deletedDateTime
- addresses
- companyName
- department
- displayName
- givenName
- jobTitle
- mail
- mailNickname
- onPremisesLastSyncDateTime
- onPremisesProvisioningErrors
- onPremisesSyncEnabled
- phones
- proxyAddresses
- surname
- directReports
- manager
- memberOf
- transitiveMemberOf
type: string
responses:
'200':
description: Success
content:
application/json:
schema:
title: Collection of orgContact
type: object
properties:
value:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.orgContact'
additionalProperties:
type: object
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: functionMetadata
Metadata
Assignees
Labels
priority:p3Nice to have. Customer impact is very minimalNice to have. Customer impact is very minimal